Home | History | Annotate | Download | only in complete

Lines Matching defs:Else

109     if (IdentifierStr == "else") return tok_else;
206 /// IfExprAST - Expression class for if/then/else.
208 ExprAST *Cond, *Then, *Else;
211 : Cond(cond), Then(then), Else(_else) {}
363 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return Error("expected else");
383 ExprAST *Else = ParseExpression();
384 if (!Else) return 0;
386 return new IfExprAST(Cond, Then, Else);
880 } else {
1012 } else {
1044 } else {
1191 // Create blocks for the then and else cases. Insert the 'then' block at the
1194 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
1209 // Emit else block.
1213 Value *ElseV = Else->Codegen();
1217 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1290 } else {
1322 else
1349 } else { // If not specified, use 0.0.
1483 } else {
1496 } else {
1515 } else {