Home | History | Annotate | Download | only in cached

Lines Matching refs:IfExprAST

181 /// IfExprAST - Expression class for if/then/else.
182 class IfExprAST : public ExprAST {
185 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
361 return new IfExprAST(Cond, Then, Else);
739 Value *IfExprAST::Codegen() {