No need for V3Signed to recurse into generate if.

This commit is contained in:
Wilson Snyder
2009-09-22 18:58:59 -04:00
parent 7a86514505
commit cb8b0d3597
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -577,7 +577,7 @@ private:
virtual void visit(AstNodeIf* nodep, AstNUser*) {
// TOP LEVEL NODE
//if (debug()) nodep->dumpTree(cout," IfPre: ");
if (!nodep->castGenIf()) {
if (!nodep->castGenIf()) { // for m_paramsOnly
nodep->ifsp()->iterateAndNext(*this);
nodep->elsesp()->iterateAndNext(*this);
}