| 183 | } |
| 184 | |
| 185 | bool X86Instr::IsCall() |
| 186 | { |
| 187 | const MCInstrDesc &instDesc = mX86->mInstrInfo->get(mMCInst.getOpcode()); |
| 188 | return (instDesc.getFlags() & (1 << MCID::Call)) != 0; |
| 189 | } |
| 190 | |
| 191 | bool X86Instr::IsReturn() |
| 192 | { |
no test coverage detected