| 1153 | |
| 1154 | |
| 1155 | uint32_t LowLevelILOperand::GetRegisterStack() const |
| 1156 | { |
| 1157 | if (m_type != RegisterStackLowLevelOperand) |
| 1158 | throw LowLevelILInstructionAccessException(); |
| 1159 | return m_instr.GetRawOperandAsRegister(m_operandIndex); |
| 1160 | } |
| 1161 | |
| 1162 | |
| 1163 | uint32_t LowLevelILOperand::GetFlag() const |
nothing calls this directly
no test coverage detected