Home | History | Annotate | Download | only in initial

Lines Matching defs:Else

67     if (IdentifierStr == "else") return tok_else;
164 /// IfExprAST - Expression class for if/then/else.
166 ExprAST *Cond, *Then, *Else;
169 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
337 return Error("expected else");
341 ExprAST *Else = ParseExpression();
342 if (!Else) return 0;
344 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 {