diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-02-26 21:47:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-02-26 21:47:57 +0000 |
commit | e6d088acc90e422451e098555d383d4d65b6ce6b (patch) | |
tree | 7b96c43f8dac3ea29c64a51a05d62cc6d564175f /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 95e78348f08fab152b2b03c516cc9f22ed60b8de (diff) |
Rename PrintableName to Name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 8ffffe1601..716c370110 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/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_->getPrintableName(reg); + cerr << tri_->getName(reg); else cerr << "%reg" << reg; } |