summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/InlineCost.cpp
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2012-09-06 19:55:56 +0000
committerManman Ren <mren@apple.com>2012-09-06 19:55:56 +0000
commitc3366ccecb3ffa7eecf0c8a173e5fc8387a44b29 (patch)
treedb482bae56f5e3a06e1ad311ee506ecd1d088c02 /llvm/lib/Analysis/InlineCost.cpp
parent84ecc3481b7dc1c9a8264dd11ea91ff9dcd9dbd2 (diff)
downloadbcm5719-llvm-c3366ccecb3ffa7eecf0c8a173e5fc8387a44b29.tar.gz
bcm5719-llvm-c3366ccecb3ffa7eecf0c8a173e5fc8387a44b29.zip
Release build: guard dump functions with "ifndef NDEBUG"
No functional change. llvm-svn: 163344
Diffstat (limited to 'llvm/lib/Analysis/InlineCost.cpp')
-rw-r--r--llvm/lib/Analysis/InlineCost.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp
index bc1ecd2ea43..12be7fdc14a 100644
--- a/llvm/lib/Analysis/InlineCost.cpp
+++ b/llvm/lib/Analysis/InlineCost.cpp
@@ -974,6 +974,7 @@ bool CallAnalyzer::analyzeCall(CallSite CS) {
return AlwaysInline || Cost < Threshold;
}
+#ifndef NDEBUG
/// \brief Dump stats about this call's analysis.
void CallAnalyzer::dump() {
#define DEBUG_PRINT_STAT(x) llvm::dbgs() << " " #x ": " << x << "\n"
@@ -987,6 +988,7 @@ void CallAnalyzer::dump() {
DEBUG_PRINT_STAT(SROACostSavingsLost);
#undef DEBUG_PRINT_STAT
}
+#endif
InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS, int Threshold) {
return getInlineCost(CS, CS.getCalledFunction(), Threshold);
OpenPOWER on IntegriCloud