Release build: guard dump functions with

"#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)"

No functional change. Update r163344.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163679 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Manman Ren
2012-09-12 05:06:18 +00:00
parent 0a16da4457
commit 286c4dc355
22 changed files with 30 additions and 30 deletions

View File

@@ -273,7 +273,7 @@ void IVUsers::print(raw_ostream &OS, const Module *M) const {
}
}
#ifndef NDEBUG
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void IVUsers::dump() const {
print(dbgs());
}