| 178 | bool x86CmpHandler(Instruction* instruction) { return x86ArithmeticHandler(instruction, ZYDIS_MNEMONIC_SUB, false); } |
| 179 | |
| 180 | bool x86TestHandler(Instruction* instruction) { return x86ArithmeticHandler(instruction, ZYDIS_MNEMONIC_AND, false); } |
| 181 | |
| 182 | bool x86JmpHandler(Instruction* instruction) |
| 183 | { |
no test coverage detected