| 177 | } |
| 178 | |
| 179 | bool X86Instr::IsBranch() |
| 180 | { |
| 181 | const MCInstrDesc &instDesc = mX86->mInstrInfo->get(mMCInst.getOpcode()); |
| 182 | return (instDesc.getFlags() & (1 << MCID::Branch)) != 0; |
| 183 | } |
| 184 | |
| 185 | bool X86Instr::IsCall() |
| 186 | { |
no test coverage detected