| 2768 | |
| 2769 | |
| 2770 | ExprId MediumLevelILFunction::TailCall( |
| 2771 | const vector<Variable>& output, ExprId dest, const vector<ExprId>& params, const ILSourceLocation& loc) |
| 2772 | { |
| 2773 | return AddExprWithLocation( |
| 2774 | MLIL_TAILCALL, loc, 0, output.size(), AddVariableList(output), dest, params.size(), AddOperandList(params)); |
| 2775 | } |
| 2776 | |
| 2777 | |
| 2778 | ExprId MediumLevelILFunction::TailCallUntyped(const vector<Variable>& output, ExprId dest, |