diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-13 19:48:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-13 19:48:37 +0000 |
commit | 6822e695c1f932477f22410f66eb8bd2d84fb81f (patch) | |
tree | 94e015cda5c795143b37347ae34fe39538f97796 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 6ceb0faafdb341af0a8eff7992bd04933422d4b7 (diff) | |
download | bcm5719-llvm-6822e695c1f932477f22410f66eb8bd2d84fb81f.tar.gz bcm5719-llvm-6822e695c1f932477f22410f66eb8bd2d84fb81f.zip |
eliminate an extraneous use of TRI::getAsmName in a comment.
llvm-svn: 81705
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index e9ddadab7c4..fca4b8008a9 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1606,7 +1606,7 @@ void AsmPrinter::printImplicitDef(const MachineInstr *MI) const { if (!VerboseAsm) return; O.PadToColumn(MAI->getCommentColumn()); O << MAI->getCommentString() << " implicit-def: " - << TRI->getAsmName(MI->getOperand(0).getReg()); + << TRI->getName(MI->getOperand(0).getReg()); } /// printLabel - This method prints a local label used by debug and |