summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveIntervalAnalysis.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/LiveIntervalAnalysis.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/LiveIntervalAnalysis.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalAnalysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index 716c3701102..8ffffe16018 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -189,7 +189,7 @@ bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
void LiveIntervals::printRegName(unsigned reg) const {
if (TargetRegisterInfo::isPhysicalRegister(reg))
- cerr << tri_->getName(reg);
+ cerr << tri_->getPrintableName(reg);
else
cerr << "%reg" << reg;
}
OpenPOWER on IntegriCloud