Now that the pseudos that needed this are all custom lowered, we can go back

to an empty PrintSpecial()

llvm-svn: 115128
This commit is contained in:
Jim Grosbach 2010-09-30 02:02:22 +00:00
parent 080fdf4609
commit 2ff7de0264
2 changed files with 1 additions and 9 deletions

View 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();
}

View 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) {}
};
}