| 1148 | } |
| 1149 | |
| 1150 | static DecodeStatus DecodeDPR_8RegisterClass(MCInst *Inst, unsigned RegNo, |
| 1151 | uint64_t Address, const void *Decoder) |
| 1152 | { |
| 1153 | if (RegNo > 7) |
| 1154 | return MCDisassembler_Fail; |
| 1155 | |
| 1156 | return DecodeDPRRegisterClass(Inst, RegNo, Address, Decoder); |
| 1157 | } |
| 1158 | |
| 1159 | static DecodeStatus DecodeDPR_VFP2RegisterClass(MCInst *Inst, unsigned RegNo, |
| 1160 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…