Home | History | Annotate | Download | only in cached

Lines Matching defs:Else

83     if (IdentifierStr == "else") return tok_else;
180 /// IfExprAST - Expression class for if/then/else.
182 ExprAST *Cond, *Then, *Else;
185 : Cond(cond), Then(then), Else(_else) {}
337 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
353 return Error("expected else");
357 ExprAST *Else = ParseExpression();
358 if (!Else) return 0;
360 return new IfExprAST(Cond, Then, Else);
659 #else
749 // Create blocks for the then and else cases. Insert the 'then' block at the
752 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
767 // Emit else block.
771 Value *ElseV = Else->Codegen();
775 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
848 } else {
880 else
907 } else { // If not specified, use 0.0.
1038 } else {
1052 } else {
1069 #else
1073 } else {
1157 } else {