Home | History | Annotate | Download | only in Chapter8

Lines Matching refs:BinaryExprAST

173 /// BinaryExprAST - Expression class for a binary operator.
174 class BinaryExprAST : public ExprAST {
179 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
570 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
745 Value *BinaryExprAST::codegen() {