diff --git a/src/V3Hasher.cpp b/src/V3Hasher.cpp index 03e6261ca..6ce417626 100644 --- a/src/V3Hasher.cpp +++ b/src/V3Hasher.cpp @@ -280,6 +280,9 @@ class HasherVisitor final : public VNVisitorConst { iterateConstNull(nodep->funcp()); }); } + void visit(AstCaseItem* nodep) override { + m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, []() {}); + } void visit(AstNodeFTaskRef* nodep) override { m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, [this, nodep]() { iterateConstNull(nodep->taskp());