Home | History | Annotate | Download | only in Chapter6

Lines Matching defs:BinOp

266   // Make sure it's a declared binop.
461 // If this is a binop, find its precedence.
465 // If this is a binop that binds at least as tightly as the current binop,
470 // Okay, we know this is a binop.
471 int BinOp = CurTok;
472 getNextToken(); // eat binop
479 // If BinOp binds less tightly with RHS than the operator after RHS, let
490 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
683 return Builder.CreateCall(F, Ops, "binop");