Home | History | Annotate | Download | only in lazy

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);
722 } else {
788 } 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 {