| 986 | } |
| 987 | |
| 988 | static DecodeStatus DecodeGPRnopcRegisterClass(MCInst *Inst, unsigned RegNo, |
| 989 | uint64_t Address, const void *Decoder) |
| 990 | { |
| 991 | DecodeStatus S = MCDisassembler_Success; |
| 992 | |
| 993 | if (RegNo == 15) |
| 994 | S = MCDisassembler_SoftFail; |
| 995 | |
| 996 | Check(&S, DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder)); |
| 997 | |
| 998 | return S; |
| 999 | } |
| 1000 | |
| 1001 | static DecodeStatus DecodeGPRwithAPSRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 1002 | uint64_t Address, const void *Decoder) |
no test coverage detected
searching dependent graphs…