Lines Matching refs:End
83 // Comment until end of line.
91 // Check for end of file. Don't eat the EOF.
170 ExprAST *Start, *End, *Step, *Body;
172 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
174 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
214 } // end anonymous namespace
350 ExprAST *End = ParseExpression();
351 if (End == 0) return 0;
368 return new ForExprAST(IdName, Start, End, Step, Body);
628 // end of the function.
727 // Compute the end condition.
728 Value *EndCond = End->Codegen();
740 // Insert the conditional branch into the end of LoopEndBB.