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/LiveInterval.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/LiveInterval.cpp')
-rw-r--r-- | lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index cc932451ac..48c25a14a3 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/lib/CodeGen/LiveInterval.cpp @@ -665,7 +665,7 @@ void LiveRange::dump() const { void LiveInterval::print(std::ostream &OS, const TargetRegisterInfo *TRI) const { if (TRI && TargetRegisterInfo::isPhysicalRegister(reg)) - OS << TRI->getPrintableName(reg); + OS << TRI->getName(reg); else OS << "%reg" << reg; |