Home | History | Annotate | Download | only in fully_lazy

Lines Matching defs:BinOp

272   // Make sure it's a declared binop.
508 // If this is a binop, find its precedence.
512 // If this is a binop that binds at least as tightly as the current binop,
517 // Okay, we know this is a binop.
518 int BinOp = CurTok;
519 getNextToken(); // eat binop
526 // If BinOp binds less tightly with RHS than the operator after RHS, let
536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
820 return C.getBuilder().CreateCall(F, Ops, "binop");