Lines Matching defs:then
64 if (IdentifierStr == "then") return tok_then;
162 /// IfExprAST - Expression class for if/then/else.
166 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
167 : Cond(cond), Then(then), Else(_else) {}
319 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
328 return Error("expected then");
329 getNextToken(); // eat the then
721 // Create blocks for the then and else cases. Insert the 'then' block at the
723 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
729 // Emit then value.