| 823 | |
| 824 | |
| 825 | void HighLevelILInstructionBase::UpdateRawOperandAsSSAVariableList(size_t operandIndex, const vector<SSAVariable>& vars) |
| 826 | { |
| 827 | UpdateRawOperand(operandIndex, vars.size() * 2); |
| 828 | UpdateRawOperand(operandIndex + 1, function->AddSSAVariableList(vars)); |
| 829 | } |
| 830 | |
| 831 | |
| 832 | RegisterValue HighLevelILInstructionBase::GetValue() const |
no test coverage detected