| 1237 | } |
| 1238 | |
| 1239 | static DecodeStatus DecodeCCOutOperand(MCInst *Inst, unsigned Val, |
| 1240 | uint64_t Address, const void *Decoder) |
| 1241 | { |
| 1242 | if (Val) |
| 1243 | MCOperand_CreateReg0(Inst, ARM_CPSR); |
| 1244 | else |
| 1245 | MCOperand_CreateReg0(Inst, 0); |
| 1246 | |
| 1247 | return MCDisassembler_Success; |
| 1248 | } |
| 1249 | |
| 1250 | static DecodeStatus DecodeSORegImmOperand(MCInst *Inst, unsigned Val, |
| 1251 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…