Home | History | Annotate | Download | only in lazy

Lines Matching defs:Else

68     if (IdentifierStr == "else") return tok_else;
165 /// IfExprAST - Expression class for if/then/else.
167 ExprAST *Cond, *Then, *Else;
170 : Cond(cond), Then(then), Else(_else) {}
322 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
338 return Error("expected else");
342 ExprAST *Else = ParseExpression();
343 if (!Else) return 0;
345 return new IfExprAST(Cond, Then, Else);
644 #else
731 // Create blocks for the then and else cases. Insert the 'then' block at the
734 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
749 // Emit else block.
753 Value *ElseV = Else->Codegen();
757 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
830 } else {
862 else
889 } else { // If not specified, use 0.0.
1020 } else {
1034 } else {
1051 #else
1055 } else {