| 1014 | } |
| 1015 | |
| 1016 | static DecodeStatus DecodetGPRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 1017 | uint64_t Address, const void *Decoder) |
| 1018 | { |
| 1019 | if (RegNo > 7) |
| 1020 | return MCDisassembler_Fail; |
| 1021 | |
| 1022 | return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder); |
| 1023 | } |
| 1024 | |
| 1025 | static const uint16_t GPRPairDecoderTable[] = { |
| 1026 | ARM_R0_R1, ARM_R2_R3, ARM_R4_R5, ARM_R6_R7, |
no test coverage detected
searching dependent graphs…