Fix last commit; allow multiple exprs
This commit is contained in:
parent
2cb97f7475
commit
b763809f5e
|
|
@ -1683,7 +1683,7 @@ struct AstSysIgnore : public AstNode {
|
|||
// Parents: stmtlist
|
||||
// Children: varrefs or exprs
|
||||
AstSysIgnore(FileLine* fileline, AstNode* exprsp)
|
||||
: AstNode (fileline) { setNOp1p(exprsp); }
|
||||
: AstNode (fileline) { addNOp1p(exprsp); }
|
||||
ASTNODE_NODE_FUNCS(SysIgnore, SYSIGNORE)
|
||||
virtual string verilogKwd() const { return "$ignored"; }
|
||||
virtual bool isGateOptimizable() const { return false; } // Though deleted before opt
|
||||
|
|
|
|||
Loading…
Reference in New Issue