summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-04-26 23:07:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-04-26 23:07:08 +0000
commit0ddf0d6becf73eabd342ce2d3793ed28950514db (patch)
tree69427011a6da9e225f0bc71cf860f6df3aa36470 /lib/Transforms
parentef99ea318e8299d4ed7a631ba82a65a2c9483025 (diff)
downloadllvm-0ddf0d6becf73eabd342ce2d3793ed28950514db.tar.gz
llvm-0ddf0d6becf73eabd342ce2d3793ed28950514db.tar.bz2
llvm-0ddf0d6becf73eabd342ce2d3793ed28950514db.tar.xz
Fix up the debug statement to actually use a newline .. radical concept.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/IPO/SimplifyLibCalls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp
index c537db7d36..e31ac9621b 100644
--- a/lib/Transforms/IPO/SimplifyLibCalls.cpp
+++ b/lib/Transforms/IPO/SimplifyLibCalls.cpp
@@ -169,7 +169,7 @@ bool SimplifyLibCalls::runOnModule(Module &M)
{
++SimplifiedLibCalls;
found_optimization = result = true;
- DEBUG(std::cerr << "simplify-libcall: " << CO->getFunctionName());
+ DEBUG(std::cerr << "simplify-libcall: " << CO->getFunctionName() << "\n");
}
}
}