Home | History | Annotate | Download | only in Chapter4

Lines Matching refs:BinOp

286   // Make sure it's a declared binop.
532 // If this is a binop, find its precedence.
536 // If this is a binop that binds at least as tightly as the current binop,
541 // Okay, we know this is a binop.
542 int BinOp = CurTok;
543 getNextToken(); // eat binop
550 // If BinOp binds less tightly with RHS than the operator after RHS, let
561 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
788 return Builder.CreateCall(F, Ops, "binop");