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:
Bill Wendling
2008-02-26 21:47:57 +00:00
parent 95e78348f0
commit e6d088acc9
18 changed files with 52 additions and 53 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ static inline void OutputReg(std::ostream &os, unsigned RegNo,
const TargetRegisterInfo *TRI = 0) {
if (!RegNo || TargetRegisterInfo::isPhysicalRegister(RegNo)) {
if (TRI)
os << " %" << TRI->get(RegNo).PrintableName;
os << " %" << TRI->get(RegNo).Name;
else
os << " %mreg(" << RegNo << ")";
} else