forked from github/verilator
Fix Ariane issues with PostAdd nodes (#2400)
This commit is contained in:
parent
ef71576825
commit
277dee109c
@ -108,6 +108,14 @@ private:
|
||||
// Done the loop
|
||||
m_insStmtp = NULL; // Next thing should be new statement
|
||||
}
|
||||
virtual void visit(AstNodeIf* nodep) VL_OVERRIDE {
|
||||
m_insStmtp = nodep;
|
||||
iterateAndNextNull(nodep->condp());
|
||||
m_insStmtp = NULL;
|
||||
iterateAndNextNull(nodep->ifsp());
|
||||
iterateAndNextNull(nodep->elsesp());
|
||||
m_insStmtp = NULL;
|
||||
}
|
||||
virtual void visit(AstNodeFor* nodep) VL_OVERRIDE { // LCOV_EXCL_LINE
|
||||
nodep->v3fatalSrc(
|
||||
"For statements should have been converted to while statements in V3Begin.cpp");
|
||||
@ -122,14 +130,6 @@ private:
|
||||
iterateChildren(nodep);
|
||||
m_insStmtp = NULL; // Next thing should be new statement
|
||||
}
|
||||
virtual void visit(AstNodeBlock* nodep) VL_OVERRIDE {
|
||||
AstNode* insStmtp_prev = m_insStmtp;
|
||||
{
|
||||
m_insStmtp = NULL;
|
||||
iterateChildren(nodep);
|
||||
}
|
||||
m_insStmtp = insStmtp_prev;
|
||||
}
|
||||
void unsupported_visit(AstNode* nodep) {
|
||||
m_unsupportedHere = true;
|
||||
UINFO(9, "Marking unsupported " << nodep << endl);
|
||||
|
@ -112,7 +112,10 @@ module t (/*AUTOARG*/
|
||||
if (1 == 1) begin
|
||||
pos++;
|
||||
end
|
||||
if (pos != 1) $stop;
|
||||
|
||||
pos = 0;
|
||||
if (1 == 1) pos++;
|
||||
if (pos != 1) $stop;
|
||||
|
||||
$write("*-* All Finished *-*\n");
|
||||
|
Loading…
Reference in New Issue
Block a user