Internals: Comment out debug that may flag ASAN problem (#3574)

This commit is contained in:
Wilson Snyder 2022-10-18 21:17:52 -04:00
parent e7068369fe
commit f6f13c7fda

View File

@ -1075,9 +1075,10 @@ void AstNode::dumpPtrs(std::ostream& os) const {
if (user5p()) os << " user5p=" << cvtToHex(user5p());
if (m_iterpp) {
os << " iterpp=" << cvtToHex(m_iterpp);
os << "*=" << cvtToHex(*m_iterpp);
// This may cause address sanitizer failures as iterpp can be stale
// os << "*=" << cvtToHex(*m_iterpp);
}
os << endl;
os << std::endl;
}
void AstNode::dumpTree(std::ostream& os, const string& indent, int maxDepth) const {