mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 08:33:38 +02:00
Internals: Cleanup unused nodep in visitors. No functional change intended.
This commit is contained in:
+3
-5
@@ -450,16 +450,14 @@ private:
|
||||
VL_DO_DANGLING(createTable(nodep), nodep);
|
||||
}
|
||||
}
|
||||
virtual void visit(AstAssignAlias* nodep) VL_OVERRIDE {}
|
||||
virtual void visit(AstAssignAlias*) VL_OVERRIDE {}
|
||||
virtual void visit(AstAssignW* nodep) VL_OVERRIDE {
|
||||
// It's nearly impossible to have a large enough assign to make this worthwhile
|
||||
// For now we won't bother.
|
||||
// Accelerated: no iterate
|
||||
}
|
||||
// default
|
||||
virtual void visit(AstNode* nodep) VL_OVERRIDE {
|
||||
iterateChildren(nodep);
|
||||
}
|
||||
virtual void visit(AstNode* nodep) VL_OVERRIDE { iterateChildren(nodep); }
|
||||
|
||||
public:
|
||||
// CONSTRUCTORS
|
||||
explicit TableVisitor(AstNetlist* nodep) {
|
||||
|
||||
Reference in New Issue
Block a user