to an empty PrintSpecial()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115128
91177308-0d34-0410-b5e6-
96231b3b80d8
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();
-}
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) {}
};
}