Home | History | Annotate | Download | only in complete

Lines Matching defs:Cond

208   ExprAST *Cond, *Then, *Else;
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
211 : Cond(cond), Then(then), Else(_else) {}
368 ExprAST *Cond = ParseExpression();
369 if (!Cond) return 0;
386 return new IfExprAST(Cond, Then, Else);
1181 Value *CondV = Cond->Codegen();