From cd799ce8f8b93dc203aaee41900e346f097eb428 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Wed, 18 Aug 2010 23:14:02 +0000 Subject: Add a newline to debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111453 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LocalStackSlotAllocation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/CodeGen/LocalStackSlotAllocation.cpp') diff --git a/lib/CodeGen/LocalStackSlotAllocation.cpp b/lib/CodeGen/LocalStackSlotAllocation.cpp index 61d6b106ec..b7071dec47 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; -- cgit v1.2.3