summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/InlineCost.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
commit49d684e1e2d044f1c2156bbddd3d621e7bd405e9 (patch)
tree0cfdbde1e0bd09031a04ee151212f48ee5fc2286 /llvm/lib/Analysis/InlineCost.cpp
parent8ff00989fc14b2e85f8d81a94195e98e9ca243f0 (diff)
downloadbcm5719-llvm-49d684e1e2d044f1c2156bbddd3d621e7bd405e9.tar.gz
bcm5719-llvm-49d684e1e2d044f1c2156bbddd3d621e7bd405e9.zip
Release build: guard dump functions with
"#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)" No functional change. Update r163344. llvm-svn: 163679
Diffstat (limited to 'llvm/lib/Analysis/InlineCost.cpp')
-rw-r--r--llvm/lib/Analysis/InlineCost.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp
index 12be7fdc14a..82f53f7b0f6 100644
--- a/llvm/lib/Analysis/InlineCost.cpp
+++ b/llvm/lib/Analysis/InlineCost.cpp
@@ -974,7 +974,7 @@ bool CallAnalyzer::analyzeCall(CallSite CS) {
return AlwaysInline || Cost < Threshold;
}
-#ifndef NDEBUG
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
/// \brief Dump stats about this call's analysis.
void CallAnalyzer::dump() {
#define DEBUG_PRINT_STAT(x) llvm::dbgs() << " " #x ": " << x << "\n"
OpenPOWER on IntegriCloud