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 | 4191b96f41b83d32ee7aa761c0d466622dac9c01 (patch) | |
tree | 0bf0001c8daa9d5dbae10bba2aaa95f5d320ef78 /lib/CodeGen/VirtRegMap.cpp | |
parent | cb5b317890e03ac90411b7d0f1d648bf2cccb94c (diff) |
Minor debug output bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index 3b6612de4f..cabc6badd8 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/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); |