diff options
author | Roman Divacky <rdivacky@FreeBSD.org> | 2009-10-15 07:47:49 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@FreeBSD.org> | 2009-10-15 07:47:49 +0000 |
commit | 26137f35958fa2237eceb06ef7003e3c19159129 (patch) | |
tree | 6441ce5f8a25ef18b4a8082f3cc834f7c8556f61 /include/llvm/Operator.h | |
parent | 59850d0874429601812bc13408cb1f776649027c (diff) |
Notes
Diffstat (limited to 'include/llvm/Operator.h')
-rw-r--r-- | include/llvm/Operator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h index 2b5cc57e75dd..60865aa8ad45 100644 --- a/include/llvm/Operator.h +++ b/include/llvm/Operator.h @@ -57,8 +57,8 @@ public: } static inline bool classof(const Operator *) { return true; } - static inline bool classof(const Instruction *I) { return true; } - static inline bool classof(const ConstantExpr *I) { return true; } + static inline bool classof(const Instruction *) { return true; } + static inline bool classof(const ConstantExpr *) { return true; } static inline bool classof(const Value *V) { return isa<Instruction>(V) || isa<ConstantExpr>(V); } |