Home | History | Annotate | Download | only in complete

Lines Matching refs:BinaryExprAST

191 /// BinaryExprAST - Expression class for a binary operator.
192 class BinaryExprAST : public ExprAST {
196 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
545 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1207 Value *BinaryExprAST::Codegen() {