| 1223 | }; |
| 1224 | |
| 1225 | static DecodeStatus DecodeDPairSpacedRegisterClass(MCInst *Inst, |
| 1226 | unsigned RegNo, uint64_t Address, const void *Decoder) |
| 1227 | { |
| 1228 | unsigned Register; |
| 1229 | |
| 1230 | if (RegNo > 29) |
| 1231 | return MCDisassembler_Fail; |
| 1232 | |
| 1233 | Register = DPairSpacedDecoderTable[RegNo]; |
| 1234 | MCOperand_CreateReg0(Inst, Register); |
| 1235 | |
| 1236 | return MCDisassembler_Success; |
| 1237 | } |
| 1238 | |
| 1239 | static DecodeStatus DecodeCCOutOperand(MCInst *Inst, unsigned Val, |
| 1240 | uint64_t Address, const void *Decoder) |
no test coverage detected
searching dependent graphs…