forked from github/verilator
Internal: Fix dumping of AstMethodCall (#4021)
This commit is contained in:
parent
ed1a9309d4
commit
4e5bd361e0
@ -4052,7 +4052,6 @@ public:
|
|||||||
BROKEN_RTN(!fromp());
|
BROKEN_RTN(!fromp());
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
void dump(std::ostream& str) const override;
|
|
||||||
};
|
};
|
||||||
class AstNew final : public AstNodeFTaskRef {
|
class AstNew final : public AstNodeFTaskRef {
|
||||||
// New as constructor
|
// New as constructor
|
||||||
|
@ -1672,15 +1672,6 @@ const char* AstMemberSel::broken() const {
|
|||||||
BROKEN_RTN(m_varp && !m_varp->brokeExists());
|
BROKEN_RTN(m_varp && !m_varp->brokeExists());
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
void AstMethodCall::dump(std::ostream& str) const {
|
|
||||||
this->AstNodeFTaskRef::dump(str);
|
|
||||||
str << " -> ";
|
|
||||||
if (taskp()) {
|
|
||||||
taskp()->dump(str);
|
|
||||||
} else {
|
|
||||||
str << " -> UNLINKED";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void AstModportFTaskRef::dump(std::ostream& str) const {
|
void AstModportFTaskRef::dump(std::ostream& str) const {
|
||||||
this->AstNode::dump(str);
|
this->AstNode::dump(str);
|
||||||
if (isExport()) str << " EXPORT";
|
if (isExport()) str << " EXPORT";
|
||||||
|
Loading…
Reference in New Issue
Block a user