| 1117 | |
| 1118 | |
| 1119 | uint64_t LowLevelILOperand::GetInteger() const |
| 1120 | { |
| 1121 | if (m_type != IntegerLowLevelOperand) |
| 1122 | throw LowLevelILInstructionAccessException(); |
| 1123 | return m_instr.GetRawOperandAsInteger(m_operandIndex); |
| 1124 | } |
| 1125 | |
| 1126 | |
| 1127 | size_t LowLevelILOperand::GetIndex() const |
no test coverage detected