| 822 | |
| 823 | |
| 824 | MediumLevelILSSAVariableList MediumLevelILOperand::GetSSAVariableList() const |
| 825 | { |
| 826 | if (m_type != SSAVariableListMediumLevelOperand) |
| 827 | throw MediumLevelILInstructionAccessException(); |
| 828 | if (m_usage == OutputSSAVariablesSubExprMediumLevelOperandUsage) |
| 829 | return m_instr.GetRawOperandAsExpr(m_operandIndex).GetRawOperandAsSSAVariableList(1); |
| 830 | return m_instr.GetRawOperandAsSSAVariableList(m_operandIndex); |
| 831 | } |
| 832 | |
| 833 | |
| 834 | MediumLevelILInstructionList MediumLevelILOperand::GetExprList() const |
nothing calls this directly
no test coverage detected