forked from github/verilator
Add debug comment when trace disabled (#4004).
This commit is contained in:
parent
f68c16a5e6
commit
ff889fde18
@ -237,8 +237,9 @@ private:
|
||||
|
||||
void addIgnore(const char* why) {
|
||||
++m_statIgnSigs;
|
||||
addToSubFunc(new AstComment{m_traVscp->fileline(),
|
||||
"Tracing: " + m_traName + " // Ignored: " + why, true});
|
||||
std::string cmt = std::string{"Tracing: "} + m_traName + " // Ignored: " + why;
|
||||
if (debug() > 3 && m_traVscp) std::cout << "- " << m_traVscp->fileline() << cmt << endl;
|
||||
addToSubFunc(new AstComment{m_traVscp->fileline(), cmt, true});
|
||||
}
|
||||
|
||||
// VISITORS
|
||||
|
Loading…
Reference in New Issue
Block a user