Home | History | Annotate | Download | only in lazy

Lines Matching refs:IfExprAST

166 /// IfExprAST - Expression class for if/then/else.
167 class IfExprAST : public ExprAST {
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
346 return new IfExprAST(Cond, Then, Else);
1001 Value *IfExprAST::Codegen() {