mirror of
https://github.com/verilator/verilator.git
synced 2026-09-05 16:45:23 +02:00
Internals: UINFO now includes newline itself. No functional change.
This commit is contained in:
+2
-2
@@ -98,7 +98,7 @@ public:
|
||||
for (auto& used : m_didUse) {
|
||||
AstCUse* const newp = new AstCUse{used.second.first, used.second.second, used.first};
|
||||
m_modp->addStmtsp(newp);
|
||||
UINFO(8, "Insert " << newp << endl);
|
||||
UINFO(8, "Insert " << newp);
|
||||
}
|
||||
}
|
||||
~CUseVisitor() override = default;
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
// Class class functions
|
||||
|
||||
void V3CUse::cUseAll() {
|
||||
UINFO(2, __FUNCTION__ << ": " << endl);
|
||||
UINFO(2, __FUNCTION__ << ":");
|
||||
// Call visitor separately for each module, so visitor state is cleared
|
||||
for (AstNodeModule* modp = v3Global.rootp()->modulesp(); modp;
|
||||
modp = VN_AS(modp->nextp(), NodeModule)) {
|
||||
|
||||
Reference in New Issue
Block a user