From 4cd5577cdff2936cc5dab6a85b1566e9566d0369 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 23 Jul 2009 01:06:10 +0000 Subject: [PATCH] Add instance predicate method to match static method. llvm-svn: 76832 --- clang/include/clang/AST/Expr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/include/clang/AST/Expr.h b/clang/include/clang/AST/Expr.h index 9d967de..bbd1b1b 100644 --- a/clang/include/clang/AST/Expr.h +++ b/clang/include/clang/AST/Expr.h @@ -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]++" -- 2.7.4