projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2e4173
)
Print the vreg that livein physregs are live in
author
Chris Lattner
<sabre@nondot.org>
Tue, 16 May 2006 05:55:30 +0000
(
05:55
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 16 May 2006 05:55:30 +0000
(
05:55
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28314
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineFunction.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineFunction.cpp
b/lib/CodeGen/MachineFunction.cpp
index f5df4e8f65f4ddb7d41d829b4ae68dcb20e2a9e0..b6d7fb94589ad3b442fe36de9ccaa70417517fa0 100644
(file)
--- a/
lib/CodeGen/MachineFunction.cpp
+++ b/
lib/CodeGen/MachineFunction.cpp
@@
-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";
}