forked from OSchip/llvm-project
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:
parent
080fdf4609
commit
2ff7de0264
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue