| 339 | #define DecodeQBRCRegisterClass DecodeQFRCRegisterClass |
| 340 | |
| 341 | static DecodeStatus decodeUImmOperand(MCInst *Inst, uint64_t Imm, |
| 342 | int64_t Address, const void *Decoder, unsigned N) |
| 343 | { |
| 344 | //assert(isUInt<N>(Imm) && "Invalid immediate"); |
| 345 | MCOperand_CreateImm0(Inst, Imm); |
| 346 | |
| 347 | return MCDisassembler_Success; |
| 348 | } |
| 349 | |
| 350 | static DecodeStatus decodeSImmOperand(MCInst *Inst, uint64_t Imm, |
| 351 | int64_t Address, const void *Decoder, unsigned N) |
nothing calls this directly
no test coverage detected
searching dependent graphs…