| 1054 | |
| 1055 | |
| 1056 | void MediumLevelILInstructionBase::UpdateRawOperandAsSSAVariableList( |
| 1057 | size_t operandIndex, const vector<SSAVariable>& vars) |
| 1058 | { |
| 1059 | UpdateRawOperand(operandIndex, vars.size() * 2); |
| 1060 | UpdateRawOperand(operandIndex + 1, function->AddSSAVariableList(vars)); |
| 1061 | } |
| 1062 | |
| 1063 | |
| 1064 | void MediumLevelILInstructionBase::UpdateRawOperandAsExprList( |
nothing calls this directly
no test coverage detected