mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
Rename PrintableName to Name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47629 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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";
|
||||
|
Reference in New Issue
Block a user