From e6d088acc90e422451e098555d383d4d65b6ce6b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 26 Feb 2008 21:47:57 +0000 Subject: Rename PrintableName to Name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47629 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineFunction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/MachineFunction.cpp') diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 1e0171a39f..3089617288 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -214,7 +214,7 @@ void MachineFunction::print(std::ostream &OS) const { for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) { if (TRI) - OS << " " << TRI->getPrintableName(I->first); + OS << " " << TRI->getName(I->first); else OS << " Reg #" << I->first; @@ -228,7 +228,7 @@ void MachineFunction::print(std::ostream &OS) const { for (MachineRegisterInfo::liveout_iterator I = RegInfo->liveout_begin(), E = RegInfo->liveout_end(); I != E; ++I) if (TRI) - OS << " " << TRI->getPrintableName(*I); + OS << " " << TRI->getName(*I); else OS << " Reg #" << *I; OS << "\n"; -- cgit v1.2.3-18-g5258