From 0ddf0d6becf73eabd342ce2d3793ed28950514db Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 26 Apr 2005 23:07:08 +0000 Subject: [PATCH] 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 --- lib/Transforms/IPO/SimplifyLibCalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp index c537db7d36a..e31ac9621bb 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"); } } }