Home | History | Annotate | Download | only in Chapter7

Lines Matching defs:BinOp

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