commit | e6d088acc90e422451e098555d383d4d65b6ce6b | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Tue Feb 26 21:47:57 2008 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Tue Feb 26 21:47:57 2008 +0000 |
tree | 7b96c43f8dac3ea29c64a51a05d62cc6d564175f | |
parent | 95e78348f08fab152b2b03c516cc9f22ed60b8de [diff] [blame] |
Rename PrintableName to Name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47629 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 8ffffe1..716c370 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -189,7 +189,7 @@ void LiveIntervals::printRegName(unsigned reg) const { if (TargetRegisterInfo::isPhysicalRegister(reg)) - cerr << tri_->getPrintableName(reg); + cerr << tri_->getName(reg); else cerr << "%reg" << reg; }