| 2558 | |
| 2559 | |
| 2560 | ExprId HighLevelILFunction::For( |
| 2561 | ExprId initExpr, ExprId condition, ExprId updateExpr, ExprId loopExpr, const ILSourceLocation& loc) |
| 2562 | { |
| 2563 | return AddExprWithLocation(HLIL_FOR, loc, 0, initExpr, condition, updateExpr, loopExpr); |
| 2564 | } |
| 2565 | |
| 2566 | |
| 2567 | ExprId HighLevelILFunction::ForSSA(ExprId initExpr, ExprId conditionPhi, ExprId condition, ExprId updateExpr, |