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
729 // Create blocks for the then and else cases. Insert the 'then' block at the
732 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
747 // Emit else block.
751 Value *ElseV = Else->Codegen();
755 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
827 } else {
859 else
886 } else { // If not specified, use 0.0.
1016 } else {
1030 } else {
1047 #else
1051 } else {