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) {
|
void addIgnore(const char* why) {
|
||||||
++m_statIgnSigs;
|
++m_statIgnSigs;
|
||||||
addToSubFunc(new AstComment{m_traVscp->fileline(),
|
std::string cmt = std::string{"Tracing: "} + m_traName + " // Ignored: " + why;
|
||||||
"Tracing: " + m_traName + " // Ignored: " + why, true});
|
if (debug() > 3 && m_traVscp) std::cout << "- " << m_traVscp->fileline() << cmt << endl;
|
||||||
|
addToSubFunc(new AstComment{m_traVscp->fileline(), cmt, true});
|
||||||
}
|
}
|
||||||
|
|
||||||
// VISITORS
|
// VISITORS
|
||||||
|
Loading…
Reference in New Issue
Block a user