summaryrefslogtreecommitdiff
path: root/lib/MC/MCLabel.cpp
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2012-09-12 05:06:18 +0000
committerManman Ren <mren@apple.com>2012-09-12 05:06:18 +0000
commit286c4dc355b8be6806081b23c3097485821c7642 (patch)
tree37e4b539af13a0213a562bf274c0a7821eff2af6 /lib/MC/MCLabel.cpp
parent0a16da445740ca6fcd7a7ca571c1917e77315904 (diff)
downloadllvm-286c4dc355b8be6806081b23c3097485821c7642.tar.gz
llvm-286c4dc355b8be6806081b23c3097485821c7642.tar.bz2
llvm-286c4dc355b8be6806081b23c3097485821c7642.tar.xz
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
Diffstat (limited to 'lib/MC/MCLabel.cpp')
-rw-r--r--lib/MC/MCLabel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCLabel.cpp b/lib/MC/MCLabel.cpp
index 95d7d16a19..1d3022a93e 100644
--- a/lib/MC/MCLabel.cpp
+++ b/lib/MC/MCLabel.cpp
@@ -16,7 +16,7 @@ void MCLabel::print(raw_ostream &OS) const {
OS << '"' << getInstance() << '"';
}
-#ifndef NDEBUG
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void MCLabel::dump() const {
print(dbgs());
}