Home | History | Annotate | Download | only in Chapter6

Lines Matching refs:Else

62     if (IdentifierStr == "else") return tok_else;
157 /// IfExprAST - Expression class for if/then/else.
159 ExprAST *Cond, *Then, *Else;
162 : Cond(cond), Then(then), Else(_else) {}
301 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
317 return Error("expected else");
321 ExprAST *Else = ParseExpression();
322 if (!Else) return 0;
324 return new IfExprAST(Cond, Then, Else);
625 // Create blocks for the then and else cases. Insert the 'then' block at the
628 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
643 // Emit else block.
647 Value *ElseV = Else->Codegen();
651 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
718 } else {
750 else
848 } else {
860 } else {
878 } else {