| 517 | |
| 518 | |
| 519 | uint64_t HighLevelILOperand::GetInteger() const |
| 520 | { |
| 521 | if (m_type != IntegerHighLevelOperand) |
| 522 | throw HighLevelILInstructionAccessException(); |
| 523 | return m_instr.GetRawOperandAsInteger(m_operandIndex); |
| 524 | } |
| 525 | |
| 526 | |
| 527 | ConstantData HighLevelILOperand::GetConstantData() const |
nothing calls this directly
no test coverage detected