Home | History | Annotate | Download | only in initial

Lines Matching refs:BinaryExprAST

144 /// BinaryExprAST - Expression class for a binary operator.
145 class BinaryExprAST : public ExprAST {
149 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
498 LHS = new BinaryExprAST(BinOp, LHS, RHS);
897 Value *BinaryExprAST::Codegen() {