Add instance predicate method to match static method.
authorTed Kremenek <kremenek@apple.com>
Thu, 23 Jul 2009 01:06:10 +0000 (01:06 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 23 Jul 2009 01:06:10 +0000 (01:06 +0000)
llvm-svn: 76832

clang/include/clang/AST/Expr.h

index 9d967de..bbd1b1b 100644 (file)
@@ -738,6 +738,7 @@ public:
   bool isIncrementDecrementOp() const { return Opc>=PostInc && Opc<=PreDec; }
   bool isOffsetOfOp() const { return Opc == OffsetOf; }
   static bool isArithmeticOp(Opcode Op) { return Op >= Plus && Op <= LNot; }
+  bool isArithmeticOp() const { return isArithmeticOp(Opc); } 
   
   /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
   /// corresponds to, e.g. "sizeof" or "[pre]++"