commit | 02554c3eadf90dcd6b1689b4a2b4863980bde165 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue May 16 05:55:30 2006 +0000 |
committer | Copybara-Service <copybara-worker@google.com> | Mon Sep 14 06:29:20 2020 -0700 |
tree | 829543660cced6da6af28b7e0daaa16faeb97d7a | |
parent | b9459e23ef1a12b0b1527a2ab296852a5e9c7740 [diff] |
Print the vreg that livein physregs are live in llvm-svn: 28314 GitOrigin-RevId: 52d0c78de80da17596ac9b81fa7c95c4669aed33
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index f5df4e8..b6d7fb9 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/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"; }