summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineLICM.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-02-26 21:11:01 +0000
committerBill Wendling <isanbard@gmail.com>2008-02-26 21:11:01 +0000
commitc24ea4fb41061acf696e9dd77022868d7ce69bb4 (patch)
tree102f1325fe103ce1d13586b5975c8040f3a8e514 /llvm/lib/CodeGen/MachineLICM.cpp
parentc7ba873dc729aaaad9d65b2264d11dcf7aacb1d4 (diff)
downloadbcm5719-llvm-c24ea4fb41061acf696e9dd77022868d7ce69bb4.tar.gz
bcm5719-llvm-c24ea4fb41061acf696e9dd77022868d7ce69bb4.zip
Change "Name" to "AsmName" in the target register info. Gee, a refactoring tool
would have been a Godsend here! llvm-svn: 47625
Diffstat (limited to 'llvm/lib/CodeGen/MachineLICM.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineLICM.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp
index 89ab93df0a6..dcca8856d28 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -251,7 +251,7 @@ bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
const TargetRegisterInfo *TRI = TM->getRegisterInfo();
for (const unsigned *ImpUses = I.getDesc().getImplicitUses();
*ImpUses; ++ImpUses)
- DOUT << " -> " << TRI->getName(*ImpUses) << "\n";
+ DOUT << " -> " << TRI->getPrintableName(*ImpUses) << "\n";
}
if (I.getDesc().getImplicitDefs()) {
@@ -260,7 +260,7 @@ bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
const TargetRegisterInfo *TRI = TM->getRegisterInfo();
for (const unsigned *ImpDefs = I.getDesc().getImplicitDefs();
*ImpDefs; ++ImpDefs)
- DOUT << " -> " << TRI->getName(*ImpDefs) << "\n";
+ DOUT << " -> " << TRI->getPrintableName(*ImpDefs) << "\n";
}
//if (TII->hasUnmodelledSideEffects(&I))
OpenPOWER on IntegriCloud