| 1062 | |
| 1063 | |
| 1064 | void MediumLevelILInstructionBase::UpdateRawOperandAsExprList( |
| 1065 | size_t operandIndex, const vector<MediumLevelILInstruction>& exprs) |
| 1066 | { |
| 1067 | vector<ExprId> exprIndexList; |
| 1068 | for (auto& i : exprs) |
| 1069 | exprIndexList.push_back((ExprId)i.exprIndex); |
| 1070 | UpdateRawOperand(operandIndex, exprIndexList.size()); |
| 1071 | UpdateRawOperand(operandIndex + 1, function->AddOperandList(exprIndexList)); |
| 1072 | } |
| 1073 | |
| 1074 | |
| 1075 | void MediumLevelILInstructionBase::UpdateRawOperandAsExprList(size_t operandIndex, const vector<ExprId>& exprs) |
nothing calls this directly
no test coverage detected