| 735 | |
| 736 | |
| 737 | uint64_t MediumLevelILOperand::GetInteger() const |
| 738 | { |
| 739 | if (m_type != IntegerMediumLevelOperand) |
| 740 | throw MediumLevelILInstructionAccessException(); |
| 741 | return m_instr.GetRawOperandAsInteger(m_operandIndex); |
| 742 | } |
| 743 | |
| 744 | |
| 745 | ConstantData MediumLevelILOperand::GetConstantData() const |
nothing calls this directly
no test coverage detected