diff options
author | Manman Ren <mren@apple.com> | 2012-09-11 22:23:19 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2012-09-11 22:23:19 +0000 |
commit | 19f49ac624abaae43f6e44605e09aa4515de7456 (patch) | |
tree | 486897fd73627db2af5b7e552bd09a3bdec28c5b /llvm/lib/CodeGen/LiveVariables.cpp | |
parent | 2aaba00a6bfdbd8f0810867260c2d1e867fc515a (diff) | |
download | bcm5719-llvm-19f49ac624abaae43f6e44605e09aa4515de7456.tar.gz bcm5719-llvm-19f49ac624abaae43f6e44605e09aa4515de7456.zip |
Release build: guard dump functions with
"#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)"
No functional change. Update r163339.
llvm-svn: 163653
Diffstat (limited to 'llvm/lib/CodeGen/LiveVariables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveVariables.cpp b/llvm/lib/CodeGen/LiveVariables.cpp index f294124228d..7359bb92a15 100644 --- a/llvm/lib/CodeGen/LiveVariables.cpp +++ b/llvm/lib/CodeGen/LiveVariables.cpp @@ -65,7 +65,7 @@ LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const { } void LiveVariables::VarInfo::dump() const { -#ifndef NDEBUG +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) dbgs() << " Alive in blocks: "; for (SparseBitVector<>::iterator I = AliveBlocks.begin(), E = AliveBlocks.end(); I != E; ++I) |