Home | History | Annotate | Download | only in Chapter2

Lines Matching refs:Op

178   char Op;
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
184 : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {}
245 unsigned Precedence; // Precedence if a binary op.
751 if (Op == '=') {
778 switch (Op) {
795 Function *F = getFunction(std::string("binary") + Op);