Home | History | Annotate | Download | only in lazy

Lines Matching defs:Else

69     if (IdentifierStr == "else") return tok_else;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
339 return Error("expected else");
343 ExprAST *Else = ParseExpression();
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
723 } else {
789 } else {
870 } else {
1011 // Create blocks for the then and else cases. Insert the 'then' block at the
1014 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
1029 // Emit else block.
1033 Value *ElseV = Else->Codegen();
1037 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1110 } else {
1142 else
1169 } else { // If not specified, use 0.0.
1303 } else {
1317 } else {
1335 #else
1339 } else {