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 | 3ac059369be75b9ba147ebca6f335ab1df46c0af (patch) | |
tree | 851d3d22dfb3e0df04563d51b202b1b4b4107aec /llvm/lib/CodeGen/LocalStackSlotAllocation.cpp | |
parent | 3decde9305679612fc61cd9f29d4c4da4c1f3585 (diff) | |
download | bcm5719-llvm-3ac059369be75b9ba147ebca6f335ab1df46c0af.tar.gz bcm5719-llvm-3ac059369be75b9ba147ebca6f335ab1df46c0af.zip |
Add a newline to debug output
llvm-svn: 111453
Diffstat (limited to 'llvm/lib/CodeGen/LocalStackSlotAllocation.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LocalStackSlotAllocation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp b/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp index 61d6b106ec6..b7071dec474 100644 --- a/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp +++ b/llvm/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; |