Internals: Less debug verbosity

This commit is contained in:
Wilson Snyder 2025-09-14 22:41:35 -04:00
parent 218af5500b
commit 3f7d13b2cf
1 changed files with 0 additions and 2 deletions

View File

@ -402,7 +402,6 @@ class LinkParseVisitor final : public VNVisitor {
AstAssign* const assp = new AstAssign{
newfl, new AstParseRef{newfl, VParseRefExp::PX_TEXT, nodep->name()},
VN_AS(nodep->valuep()->unlinkFrBack(), NodeExpr)};
UINFOTREE(1, assp, "", "new");
if (nodep->lifetime().isAutomatic()) {
nodep->addNextHere(new AstInitialAutomatic{newfl, assp});
} else {
@ -415,7 +414,6 @@ class LinkParseVisitor final : public VNVisitor {
nodep->addNextHere(
new AstAssign{newfl, new AstVarRef{newfl, nodep, VAccess::WRITE},
VN_AS(nodep->valuep()->unlinkFrBack(), NodeExpr)});
UINFOTREE(1, nodep->nextp(), "", "new");
}
}
}