Home | History | Annotate | Download | only in lazy

Lines Matching refs:BinaryExprAST

146 /// BinaryExprAST - Expression class for a binary operator.
147 class BinaryExprAST : public ExprAST {
151 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
500 LHS = new BinaryExprAST(BinOp, LHS, RHS);
937 Value *BinaryExprAST::Codegen() {