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 | 28f7e3506ee1779753939d87c2ce4e1a2f19e9c0 (patch) | |
tree | 514cbb4983826aa0b3a91559ebe86bb72d8e5bdd | |
parent | 4957efed4f96e7af2efbcba4f5a6b3a6f255c795 (diff) | |
download | external_llvm-28f7e3506ee1779753939d87c2ce4e1a2f19e9c0.tar.gz external_llvm-28f7e3506ee1779753939d87c2ce4e1a2f19e9c0.tar.bz2 external_llvm-28f7e3506ee1779753939d87c2ce4e1a2f19e9c0.zip |
eliminate an extraneous use of TRI::getAsmName in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81705 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index e9ddadab7c..fca4b8008a 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/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 |