| 189 | } |
| 190 | |
| 191 | bool X86Instr::IsReturn() |
| 192 | { |
| 193 | const MCInstrDesc &instDesc = mX86->mInstrInfo->get(mMCInst.getOpcode()); |
| 194 | return (instDesc.getFlags() & (1 << MCID::Return)) != 0; |
| 195 | } |
| 196 | |
| 197 | bool X86Instr::IsRep(bool& isPrefixOnly) |
| 198 | { |
no test coverage detected