| 972 | }; |
| 973 | |
| 974 | static DecodeStatus DecodeGPRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 975 | uint64_t Address, const void *Decoder) |
| 976 | { |
| 977 | unsigned Register; |
| 978 | |
| 979 | if (RegNo > 15) |
| 980 | return MCDisassembler_Fail; |
| 981 | |
| 982 | Register = GPRDecoderTable[RegNo]; |
| 983 | MCOperand_CreateReg0(Inst, Register); |
| 984 | |
| 985 | return MCDisassembler_Success; |
| 986 | } |
| 987 | |
| 988 | static DecodeStatus DecodeGPRnopcRegisterClass(MCInst *Inst, unsigned RegNo, |
| 989 | uint64_t Address, const void *Decoder) |
no test coverage detected
searching dependent graphs…