Reverted unrelated whitespace change

This commit is contained in:
Ethan Sifferman 2026-06-08 19:50:13 -07:00
parent 873d2c616c
commit 9ca4fa417f
1 changed files with 3 additions and 2 deletions

View File

@ -852,8 +852,9 @@ class DelayedVisitor final : public VNVisitor {
AstVarScope* const flagVscp = createTemp(flp, scopep, "__VdlySet" + baseName, 1); AstVarScope* const flagVscp = createTemp(flp, scopep, "__VdlySet" + baseName, 1);
flagVscp->varp()->setIgnorePostWrite(); flagVscp->varp()->setIgnorePostWrite();
// Set the flag at the original NBA // Set the flag at the original NBA
nodep->addHereThisAsNext(new AstAssign{flp, new AstVarRef{flp, flagVscp, VAccess::WRITE}, nodep->addHereThisAsNext( //
new AstConst{flp, AstConst::BitTrue{}}}); new AstAssign{flp, new AstVarRef{flp, flagVscp, VAccess::WRITE},
new AstConst{flp, AstConst::BitTrue{}}});
// Add the 'Post' scheduled commit // Add the 'Post' scheduled commit
AstIf* const ifp = new AstIf{flp, new AstVarRef{flp, flagVscp, VAccess::READ}}; AstIf* const ifp = new AstIf{flp, new AstVarRef{flp, flagVscp, VAccess::READ}};
vscpInfo.flagUniqueKit().postp->addStmtsp(ifp); vscpInfo.flagUniqueKit().postp->addStmtsp(ifp);