Now that the pseudos that needed this are all custom lowered, we can go back
authorJim Grosbach <grosbach@apple.com>
Thu, 30 Sep 2010 02:02:22 +0000 (02:02 +0000)
committerJim Grosbach <grosbach@apple.com>
Thu, 30 Sep 2010 02:02:22 +0000 (02:02 +0000)
to an empty PrintSpecial()

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115128 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
lib/Target/ARM/AsmPrinter/ARMInstPrinter.h

index 7397c4c6bd6b932e8683f9b3e30fd7668b8f7143..f97bf0b3d6aa0a92b153ebf015c6a726401caf03 100644 (file)
@@ -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();
-}
index ea0c7d600c5f567f39b8107293f43782e69d92e0..7bfb757cf3e1ddc0c1b91524405ec1c537366f4e 100644 (file)
@@ -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) {}
 };
 
 }