[llvm-commits] CVS: llvm/lib/CodeGen/MachineFunction.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon May 15 22:55:42 PDT 2006
Changes in directory llvm/lib/CodeGen:
MachineFunction.cpp updated: 1.91 -> 1.92
---
Log message:
Print the vreg that livein physregs are live in
---
Diffs of the changes: (+3 -0)
MachineFunction.cpp | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/lib/CodeGen/MachineFunction.cpp
diff -u llvm/lib/CodeGen/MachineFunction.cpp:1.91 llvm/lib/CodeGen/MachineFunction.cpp:1.92
--- llvm/lib/CodeGen/MachineFunction.cpp:1.91 Fri May 12 01:33:48 2006
+++ llvm/lib/CodeGen/MachineFunction.cpp Tue May 16 00:55:30 2006
@@ -152,6 +152,9 @@
OS << " " << MRI->getName(I->first);
else
OS << " Reg #" << I->first;
+
+ if (I->second)
+ OS << " in VR#" << I->second << " ";
}
OS << "\n";
}
More information about the llvm-commits
mailing list