diff options
author | Manman Ren <mren@apple.com> | 2012-09-12 05:06:18 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2012-09-12 05:06:18 +0000 |
commit | 286c4dc355b8be6806081b23c3097485821c7642 (patch) | |
tree | 37e4b539af13a0213a562bf274c0a7821eff2af6 /lib/MC/MCDwarf.cpp | |
parent | 0a16da445740ca6fcd7a7ca571c1917e77315904 (diff) |
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/MCDwarf.cpp')
-rw-r--r-- | lib/MC/MCDwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp index 96938f7626..f71b266ad6 100644 --- a/lib/MC/MCDwarf.cpp +++ b/lib/MC/MCDwarf.cpp @@ -425,7 +425,7 @@ void MCDwarfFile::print(raw_ostream &OS) const { OS << '"' << getName() << '"'; } -#ifndef NDEBUG +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) void MCDwarfFile::dump() const { print(dbgs()); } |