diff --git a/src/V3AstNodes.cpp b/src/V3AstNodes.cpp index 812efb440..ba97aab3d 100644 --- a/src/V3AstNodes.cpp +++ b/src/V3AstNodes.cpp @@ -695,18 +695,18 @@ void AstDisplay::dump(ostream& str) { this->AstNode::dump(str); //str<<" "<AstNode::dump(str); - str<<" -> "; - if (labelp()) { labelp()->dump(str); } - else { str<<"%Error:UNLINKED"; } -} void AstEnumItemRef::dump(ostream& str) { this->AstNode::dump(str); str<<" -> "; if (itemp()) { itemp()->dump(str); } else { str<<"UNLINKED"; } } +void AstJumpGo::dump(ostream& str) { + this->AstNode::dump(str); + str<<" -> "; + if (labelp()) { labelp()->dump(str); } + else { str<<"%Error:UNLINKED"; } +} void AstPin::dump(ostream& str) { this->AstNode::dump(str); if (modVarp()) { str<<" -> "; modVarp()->dump(str); }