From: Jim Grosbach Date: Wed, 18 Aug 2010 23:14:02 +0000 (+0000) Subject: Add a newline to debug output X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cd799ce8f8b93dc203aaee41900e346f097eb428;p=oota-llvm.git Add a newline to debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111453 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LocalStackSlotAllocation.cpp b/lib/CodeGen/LocalStackSlotAllocation.cpp index 61d6b106ec6..b7071dec474 100644 --- a/lib/CodeGen/LocalStackSlotAllocation.cpp +++ b/lib/CodeGen/LocalStackSlotAllocation.cpp @@ -235,7 +235,8 @@ void LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) { std::pair RegOffset; if (lookupCandidateBaseReg(BaseRegisters, RegOffset, LocalOffsets[FrameIdx], MI, TRI)) { - DEBUG(dbgs() << " Reusing base register " << RegOffset.first); + DEBUG(dbgs() << " Reusing base register " << + RegOffset.first << "\n"); // We found a register to reuse. BaseReg = RegOffset.first; Offset = LocalOffsets[FrameIdx] - RegOffset.second;