Print the vreg that livein physregs are live in

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-16 05:55:30 +00:00
parent e2e41730cc
commit 4e92027837

View File

@ -152,6 +152,9 @@ void MachineFunction::print(std::ostream &OS) const {
OS << " " << MRI->getName(I->first); OS << " " << MRI->getName(I->first);
else else
OS << " Reg #" << I->first; OS << " Reg #" << I->first;
if (I->second)
OS << " in VR#" << I->second << " ";
} }
OS << "\n"; OS << "\n";
} }