aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-12 00:02:46 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-12 00:02:46 +0000
commit7c76af2de9a06943da4cce9e356ca829da11c017 (patch)
tree0bf0001c8daa9d5dbae10bba2aaa95f5d320ef78
parent929c80333b7cde8dc72e2071d3f9f4573f31015f (diff)
downloadexternal_llvm-7c76af2de9a06943da4cce9e356ca829da11c017.zip
external_llvm-7c76af2de9a06943da4cce9e356ca829da11c017.tar.gz
external_llvm-7c76af2de9a06943da4cce9e356ca829da11c017.tar.bz2
Minor debug output bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48261 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/VirtRegMap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp
index 3b6612d..cabc6ba 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);