Home | History | Annotate | Download | only in initial

Lines Matching refs:IfExprAST

164 /// IfExprAST - Expression class for if/then/else.
165 class IfExprAST : public ExprAST {
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
344 return new IfExprAST(Cond, Then, Else);
959 Value *IfExprAST::Codegen() {