Home | History | Annotate | Download | only in initial

Lines Matching defs:Else

66     if (IdentifierStr == "else") return tok_else;
163 /// IfExprAST - Expression class for if/then/else.
165 ExprAST *Cond, *Then, *Else;
168 : Cond(cond), Then(then), Else(_else) {}
320 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
336 return Error("expected else");
340 ExprAST *Else = ParseExpression();
341 if (!Else) return 0;
343 return new IfExprAST(Cond, Then, Else);
971 // Create blocks for the then and else cases. Insert the 'then' block at the
974 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
989 // Emit else block.
993 Value *ElseV = Else->Codegen();
997 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1070 } else {
1102 else
1129 } else { // If not specified, use 0.0.
1262 } else {
1276 } else {
1294 #else
1298 } else {