commit | 52d0c78de80da17596ac9b81fa7c95c4669aed33 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue May 16 05:55:30 2006 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue May 16 05:55:30 2006 +0000 |
tree | f089b75f1a43966aadb34aa4f02ed6b8acecd276 | |
parent | 5f0edfb849eca5a22693d5de9f24d200e5b905d5 [diff] [blame] |
Print the vreg that livein physregs are live in llvm-svn: 28314
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index f5df4e8..b6d7fb9 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp
@@ -152,6 +152,9 @@ OS << " " << MRI->getName(I->first); else OS << " Reg #" << I->first; + + if (I->second) + OS << " in VR#" << I->second << " "; } OS << "\n"; }