Home | History | Annotate | Download | only in lazy_irgen

Lines Matching defs:BinOp

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