| 812 | |
| 813 | |
| 814 | MediumLevelILVariableList MediumLevelILOperand::GetVariableList() const |
| 815 | { |
| 816 | if (m_type != VariableListMediumLevelOperand) |
| 817 | throw MediumLevelILInstructionAccessException(); |
| 818 | if (m_usage == OutputVariablesSubExprMediumLevelOperandUsage) |
| 819 | return m_instr.GetRawOperandAsExpr(m_operandIndex).GetRawOperandAsVariableList(0); |
| 820 | return m_instr.GetRawOperandAsVariableList(m_operandIndex); |
| 821 | } |
| 822 | |
| 823 | |
| 824 | MediumLevelILSSAVariableList MediumLevelILOperand::GetSSAVariableList() const |
no test coverage detected