| 805 | |
| 806 | |
| 807 | void HighLevelILInstructionBase::UpdateRawOperandAsExprList( |
| 808 | size_t operandIndex, const vector<HighLevelILInstruction>& exprs) |
| 809 | { |
| 810 | vector<ExprId> exprIndexList; |
| 811 | for (auto& i : exprs) |
| 812 | exprIndexList.push_back((ExprId)i.exprIndex); |
| 813 | UpdateRawOperand(operandIndex, exprIndexList.size()); |
| 814 | UpdateRawOperand(operandIndex + 1, function->AddOperandList(exprIndexList)); |
| 815 | } |
| 816 | |
| 817 | |
| 818 | void HighLevelILInstructionBase::UpdateRawOperandAsExprList(size_t operandIndex, const vector<ExprId>& exprs) |
no test coverage detected