diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-08-18 23:14:02 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-08-18 23:14:02 +0000 |
commit | cd799ce8f8b93dc203aaee41900e346f097eb428 (patch) | |
tree | 6d2bbceaf907b9870aec51f3501e6d28bc02daee /lib/CodeGen | |
parent | 2215c607c3035be197f163beb5e7d8308f8787e5 (diff) |
Add a newline to debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111453 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/LocalStackSlotAllocation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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<unsigned, int64_t> 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; |