diff options
author | Eric Christopher <echristo@gmail.com> | 2014-02-26 23:27:16 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-02-26 23:27:16 +0000 |
commit | a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d (patch) | |
tree | 1fbc8b00a55fb7d6b8207b8d983b6aa9c0e747b9 /llvm/lib/Analysis/IPA/InlineCost.cpp | |
parent | 9f240f742b9dc03a0e3ea0ee56f700c5c49dc532 (diff) | |
download | bcm5719-llvm-a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d.tar.gz bcm5719-llvm-a13839f5ca8f72d480f09c6eaed1f4e8bd49fb0d.zip |
Remove unnecessary llvm:: qualification.
llvm-svn: 202316
Diffstat (limited to 'llvm/lib/Analysis/IPA/InlineCost.cpp')
-rw-r--r-- | llvm/lib/Analysis/IPA/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/IPA/InlineCost.cpp b/llvm/lib/Analysis/IPA/InlineCost.cpp index 6d700b9db8b..c25db304291 100644 --- a/llvm/lib/Analysis/IPA/InlineCost.cpp +++ b/llvm/lib/Analysis/IPA/InlineCost.cpp @@ -1180,7 +1180,7 @@ bool CallAnalyzer::analyzeCall(CallSite CS) { #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" +#define DEBUG_PRINT_STAT(x) dbgs() << " " #x ": " << x << "\n" DEBUG_PRINT_STAT(NumConstantArgs); DEBUG_PRINT_STAT(NumConstantOffsetPtrArgs); DEBUG_PRINT_STAT(NumAllocaArgs); |