diff options
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; |