| 1298 | |
| 1299 | |
| 1300 | map<uint32_t, int32_t> LowLevelILOperand::GetRegisterStackAdjustments() const |
| 1301 | { |
| 1302 | if (m_type != RegisterStackAdjustmentsLowLevelOperand) |
| 1303 | throw LowLevelILInstructionAccessException(); |
| 1304 | return m_instr.GetRawOperandAsRegisterStackAdjustments(m_operandIndex); |
| 1305 | } |
| 1306 | |
| 1307 | |
| 1308 | const LowLevelILOperand LowLevelILOperandList::ListIterator::operator*() |
nothing calls this directly
no test coverage detected