diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-09-30 02:02:22 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-09-30 02:02:22 +0000 |
commit | 4c07ed51a71943f07d6ef00615f399389d2e72e7 (patch) | |
tree | 89a7fb700e33585cb305da3aa7426e899551c26d /lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp | |
parent | 8a8e5fe14352aaeb0ccc1c9cda5698d004dac093 (diff) | |
download | external_llvm-4c07ed51a71943f07d6ef00615f399389d2e72e7.tar.gz external_llvm-4c07ed51a71943f07d6ef00615f399389d2e72e7.tar.bz2 external_llvm-4c07ed51a71943f07d6ef00615f399389d2e72e7.zip |
Now that the pseudos that needed this are all custom lowered, we can go back
to an empty PrintSpecial()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp')
-rw-r--r-- | lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp index 7397c4c6bd..f97bf0b3d6 100644 --- a/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp @@ -731,11 +731,3 @@ void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum, uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits); O << "#0x" << utohexstr(Val); } - -void ARMInstPrinter::PrintSpecial(const MCInst *MI, raw_ostream &O, - const char *Kind) { - if (strcmp(Kind, "comment") == 0) - O << "@"; - else - abort(); -} |