diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-08-20 19:04:43 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-08-20 19:04:43 +0000 |
commit | 7110941d68c295170d36d8f21cd725bdc67957e8 (patch) | |
tree | 74a7cd1517f3b09a541acfe1751113b0d1bce1e3 /llvm/lib/CodeGen/LocalStackSlotAllocation.cpp | |
parent | d3eb989f370d237e267443d1f1f72df02d2ce526 (diff) | |
download | bcm5719-llvm-7110941d68c295170d36d8f21cd725bdc67957e8.tar.gz bcm5719-llvm-7110941d68c295170d36d8f21cd725bdc67957e8.zip |
Add more dbg output
llvm-svn: 111670
Diffstat (limited to 'llvm/lib/CodeGen/LocalStackSlotAllocation.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LocalStackSlotAllocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp b/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp index 962c7c3a15a..f5b79059d0a 100644 --- a/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp +++ b/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp @@ -282,6 +282,7 @@ bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) { // Modify the instruction to use the new base register rather // than the frame index operand. TRI->resolveFrameIndex(I, BaseReg, Offset); + DEBUG(dbgs() << "Resolved: " << *MI); ++NumReplacements; } |