| 2734 | |
| 2735 | |
| 2736 | ExprId MediumLevelILFunction::Call( |
| 2737 | const vector<Variable>& output, ExprId dest, const vector<ExprId>& params, const ILSourceLocation& loc) |
| 2738 | { |
| 2739 | return AddExprWithLocation( |
| 2740 | MLIL_CALL, loc, 0, output.size(), AddVariableList(output), dest, params.size(), AddOperandList(params)); |
| 2741 | } |
| 2742 | |
| 2743 | |
| 2744 | ExprId MediumLevelILFunction::CallUntyped(const vector<Variable>& output, ExprId dest, const vector<ExprId>& params, |