Home | History | Annotate | Download | only in cached

Lines Matching refs:IfExprAST

180 /// IfExprAST - Expression class for if/then/else.
181 class IfExprAST : public ExprAST {
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
360 return new IfExprAST(Cond, Then, Else);
737 Value *IfExprAST::Codegen() {