Don't execute dump unless NDEBUG isn't defined.

llvm-svn: 42280
This commit is contained in:
Bill Wendling 2007-09-24 22:43:48 +00:00
parent f6cb4c3d65
commit 9390abcf16

View File

@ -1185,7 +1185,9 @@ bool Andersens::Node::intersectsIgnoring(Node *N, unsigned Ignoring) const {
}
void dumpToDOUT(SparseBitVector<> *bitmap) {
#ifndef NDEBUG
dump(*bitmap, DOUT);
#endif
}