diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-03-12 00:02:46 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-12 00:02:46 +0000 |
| commit | b3986354566dfae812bcb3c9c28c972910425587 (patch) | |
| tree | e907b412224a208339a664ee138423f0cb64437c /llvm/lib | |
| parent | 8a361c1f9292a1745e9cdaec16d449e5daf1086d (diff) | |
| download | bcm5719-llvm-b3986354566dfae812bcb3c9c28c972910425587.tar.gz bcm5719-llvm-b3986354566dfae812bcb3c9c28c972910425587.zip | |
Minor debug output bug.
llvm-svn: 48261
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index 3b6612de4ff..cabc6badd8a 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/lib/CodeGen/VirtRegMap.cpp @@ -1125,7 +1125,7 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM) { TII->storeRegToStackSlot(MBB, next(MII), Phys, isKill, StackSlot, RC); MachineInstr *StoreMI = next(MII); VRM.addSpillSlotUse(StackSlot, StoreMI); - DOUT << "Store:\t" << StoreMI; + DOUT << "Store:\t" << *StoreMI; VRM.virtFolded(VirtReg, StoreMI, VirtRegMap::isMod); } NextMII = next(MII); |

