Home | History | Annotate | Download | only in Chapter5

Lines Matching full:binop

301   // Make sure it's a declared binop.
547 // If this is a binop, find its precedence.
551 // If this is a binop that binds at least as tightly as the current binop,
556 // Okay, we know this is a binop.
557 int BinOp = CurTok;
558 getNextToken(); // eat binop
565 // If BinOp binds less tightly with RHS than the operator after RHS, let
576 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
810 return Builder.CreateCall(F, Ops, "binop");