Home | History | Annotate | Download | only in cached

Lines Matching refs:BinaryExprAST

161 /// BinaryExprAST - Expression class for a binary operator.
162 class BinaryExprAST : public ExprAST {
166 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
515 LHS = new BinaryExprAST(BinOp, LHS, RHS);
669 Value *BinaryExprAST::Codegen() {