Support 'until' property (partial #7290) (#7399)

This commit is contained in:
Ryszard Rozak
2026-04-10 08:17:54 -04:00
committed by GitHub
parent cf9a52cb92
commit 4da31b0418
13 changed files with 269 additions and 140 deletions
+9
View File
@@ -1647,6 +1647,15 @@ class WidthVisitor final : public VNVisitor {
}
}
void visit(AstUntil* nodep) override {
assertAtExpr(nodep);
if (m_vup->prelim()) {
iterateCheckBool(nodep, "LHS", nodep->lhsp(), BOTH);
iterateCheckBool(nodep, "RHS", nodep->rhsp(), BOTH);
nodep->dtypeSetBit();
}
}
void visit(AstRand* nodep) override {
assertAtExpr(nodep);
if (m_vup->prelim()) {