| 348 | } |
| 349 | |
| 350 | static DecodeStatus decodeSImmOperand(MCInst *Inst, uint64_t Imm, |
| 351 | int64_t Address, const void *Decoder, unsigned N) |
| 352 | { |
| 353 | // assert(isUInt<N>(Imm) && "Invalid immediate"); |
| 354 | MCOperand_CreateImm0(Inst, SignExtend64(Imm, N)); |
| 355 | |
| 356 | return MCDisassembler_Success; |
| 357 | } |
| 358 | |
| 359 | |
| 360 | #define GET_INSTRINFO_ENUM |
nothing calls this directly
no test coverage detected
searching dependent graphs…