diff --git a/Changes b/Changes index bf384d337..0aad4db52 100644 --- a/Changes +++ b/Changes @@ -9,6 +9,8 @@ indicates the contributor was also the author of the fix; Thanks! **** Fix mis-optimized identical submodule subtract, bug581. [Charlie Brej] +**** Fix crash on dotted references into dead modules, bug583. [Jeremy Bennett] + **** Fix compile issues on MSVCC, bug571, bug577. [Amir Gonnen] **** Fix --debug overriding preceding --dump-treei, bug580. [Jeremy Bennett] diff --git a/src/V3LinkDot.cpp b/src/V3LinkDot.cpp index a1e6013a9..ab898c6af 100644 --- a/src/V3LinkDot.cpp +++ b/src/V3LinkDot.cpp @@ -1484,6 +1484,7 @@ private: } nodep->fromp()->iterateAndNext(*this); nodep->bitp()->iterateAndNext(*this); + nodep->attrp()->iterateAndNext(*this); } virtual void visit(AstBegin* nodep, AstNUser*) { UINFO(5," "<