if instruction is a branch instruction, but not JMP, then it must be a conditional branch
| 52 | |
| 53 | // if instruction is a branch instruction, but not JMP, then it must be a conditional branch |
| 54 | bool Instruction::isConditionalBranchInstruction() { return (isBranchInstruction() && instructionInfo.mnemonic != ZYDIS_MNEMONIC_JMP); } |
| 55 | |
| 56 | void Instruction::setDestInstructionIndex(int destInstructionIndex) { this->destInstructionIndex = destInstructionIndex; } |
| 57 |
no outgoing calls
no test coverage detected