Home | History | Annotate | Download | only in complete

Lines Matching refs:Op

192   char Op;
195 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
196 : Op(op), LHS(lhs), RHS(rhs) {}
248 unsigned Precedence; // Precedence if a binary op.
1208 if (Op == '=') {
1232 switch (Op) {
1249 F = TheHelper->getFunction(MakeLegalFunctionName(std::string("binary")+Op));
1251 F = TheHelper->getFunction(std::string("binary")+Op);