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 | 2ff7de0264fa0f74e44dbb02f911463ee1004b4b (patch) | |
| tree | 9316b9771b1c27a1e374bfa71716f9dbe1a93468 /llvm/lib | |
| parent | 080fdf4609339ef5a3264d3093adc36cc2e17d58 (diff) | |
| download | bcm5719-llvm-2ff7de0264fa0f74e44dbb02f911463ee1004b4b.tar.gz bcm5719-llvm-2ff7de0264fa0f74e44dbb02f911463ee1004b4b.zip | |
Now that the pseudos that needed this are all custom lowered, we can go back
to an empty PrintSpecial()
llvm-svn: 115128
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp | 8 | ||||
| -rw-r--r-- | llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.h | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp b/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp index 7397c4c6bd6..f97bf0b3d6a 100644 --- a/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp +++ b/llvm/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(); -} diff --git a/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.h b/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.h index ea0c7d600c5..7bfb757cf3e 100644 --- a/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.h +++ b/llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.h @@ -109,7 +109,7 @@ public: void printNEONModImmOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printPCLabel(const MCInst *MI, unsigned OpNum, raw_ostream &O); - void PrintSpecial(const MCInst *MI, raw_ostream &O, const char *Kind); + void PrintSpecial(const MCInst *MI, raw_ostream &O, const char *Kind) {} }; } |

