summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LocalStackSlotAllocation.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-08-18 23:14:02 +0000
committerJim Grosbach <grosbach@apple.com>2010-08-18 23:14:02 +0000
commitcd799ce8f8b93dc203aaee41900e346f097eb428 (patch)
tree6d2bbceaf907b9870aec51f3501e6d28bc02daee /lib/CodeGen/LocalStackSlotAllocation.cpp
parent2215c607c3035be197f163beb5e7d8308f8787e5 (diff)
downloadllvm-cd799ce8f8b93dc203aaee41900e346f097eb428.tar.gz
llvm-cd799ce8f8b93dc203aaee41900e346f097eb428.tar.bz2
llvm-cd799ce8f8b93dc203aaee41900e346f097eb428.tar.xz
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/LocalStackSlotAllocation.cpp')
-rw-r--r--lib/CodeGen/LocalStackSlotAllocation.cpp3
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;