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 | f806c23a9a297e0b6d19d82ed23c6c5921d6ecd9 (patch) | |
tree | 514cbb4983826aa0b3a91559ebe86bb72d8e5bdd | |
parent | a1cb09e4b9d3b5a80a20d881b3d6d5c60d15f0d5 (diff) | |
download | external_llvm-f806c23a9a297e0b6d19d82ed23c6c5921d6ecd9.zip external_llvm-f806c23a9a297e0b6d19d82ed23c6c5921d6ecd9.tar.gz external_llvm-f806c23a9a297e0b6d19d82ed23c6c5921d6ecd9.tar.bz2 |
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 e9ddada..fca4b80 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 |