Home | History | Annotate | Download | only in Chapter3

Lines Matching refs:BinaryExprAST

176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST {
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {