mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 16:40:12 +02:00
Internal speedups: Skip iterator for Termop or VarRefs.
Fix AstUCFunc being mis-labeled as a Termop.
This commit is contained in:
@@ -246,6 +246,8 @@ private:
|
||||
nodep->iterateChildren(*this); checkNode(nodep); }
|
||||
virtual void visit(AstNodeBiop* nodep, AstNUser*) {
|
||||
nodep->iterateChildren(*this); checkNode(nodep); }
|
||||
virtual void visit(AstUCFunc* nodep, AstNUser*) {
|
||||
nodep->iterateChildren(*this); checkNode(nodep); }
|
||||
virtual void visit(AstSel* nodep, AstNUser*) {
|
||||
nodep->fromp()->iterateAndNext(*this);
|
||||
{ // Only the 'from' is part of the assignment LHS
|
||||
|
||||
Reference in New Issue
Block a user