| 541 | |
| 542 | |
| 543 | uint32_t HighLevelILOperand::GetIntrinsic() const |
| 544 | { |
| 545 | if (m_type != IntrinsicHighLevelOperand) |
| 546 | throw HighLevelILInstructionAccessException(); |
| 547 | return (uint32_t)m_instr.GetRawOperandAsInteger(m_operandIndex); |
| 548 | } |
| 549 | |
| 550 | |
| 551 | HighLevelILInstruction HighLevelILOperand::GetExpr() const |
nothing calls this directly
no test coverage detected