Print the vreg that livein physregs are live in

llvm-svn: 28314
This commit is contained in:
Chris Lattner
2006-05-16 05:55:30 +00:00
parent 5f0edfb849
commit 52d0c78de8

View File

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