Lines Matching defs:Cond
168 ExprAST *Cond, *Then, *Else;170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)171 : Cond(cond), Then(then), Else(_else) {}328 ExprAST *Cond = ParseExpression();329 if (!Cond) return 0;346 return new IfExprAST(Cond, Then, Else);1001 Value *CondV = Cond->Codegen();