V3Combine: Fix crash if CCall in expression position

This commit is contained in:
Geza Lore 2022-02-27 12:48:55 +00:00
parent 32f843a214
commit 665fa140a8

View File

@ -102,9 +102,7 @@ private:
"Don't know how to combine functions that are referenced via AstAddrOfCFunc");
}
// LCOV_EXCL_END
// Speed things up
virtual void visit(AstNodeAssign*) override {}
virtual void visit(AstNodeMath*) override {}
virtual void visit(AstNode* nodep) override { iterateChildren(nodep); }
public: