From f13b36ddc55705cb00a8ce4aaa804bac2225ace2 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 18 Jul 2009 05:12:58 +0000 Subject: [PATCH] Add line breaks to make the debug output a bit more readable. llvm-svn: 76284 --- llvm/lib/Transforms/IPO/Inliner.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index b382837289bd..e874a98b8dbd 100644 --- a/llvm/lib/Transforms/IPO/Inliner.cpp +++ b/llvm/lib/Transforms/IPO/Inliner.cpp @@ -95,13 +95,13 @@ bool Inliner::shouldInline(CallSite CS) { if (IC.isAlways()) { DOUT << " Inlining: cost=always" - << ", Call: " << *CS.getInstruction(); + << ", Call: " << *CS.getInstruction() << "\n"; return true; } if (IC.isNever()) { DOUT << " NOT Inlining: cost=never" - << ", Call: " << *CS.getInstruction(); + << ", Call: " << *CS.getInstruction() << "\n"; return false; } @@ -116,11 +116,11 @@ bool Inliner::shouldInline(CallSite CS) { if (Cost >= (int)(CurrentThreshold * FudgeFactor)) { DOUT << " NOT Inlining: cost=" << Cost - << ", Call: " << *CS.getInstruction(); + << ", Call: " << *CS.getInstruction() << "\n"; return false; } else { DOUT << " Inlining: cost=" << Cost - << ", Call: " << *CS.getInstruction(); + << ", Call: " << *CS.getInstruction() << "\n"; return true; } }