Home | History | Annotate | Download | only in cached

Lines Matching refs:BinaryExprAST

167 /// BinaryExprAST - Expression class for a binary operator.
168 class BinaryExprAST : public ExprAST {
172 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
521 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1039 Value *BinaryExprAST::Codegen() {