diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2009-10-15 07:47:49 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2009-10-15 07:47:49 +0000 |
commit | 5effb5c6a161c1bdbdd9585dfdc97a6105e3df66 (patch) | |
tree | 6441ce5f8a25ef18b4a8082f3cc834f7c8556f61 /include/llvm/Operator.h | |
parent | cd749a9c07f1de2fb8affde90537efa4bc3e7c54 (diff) | |
download | FreeBSD-src-5effb5c6a161c1bdbdd9585dfdc97a6105e3df66.zip FreeBSD-src-5effb5c6a161c1bdbdd9585dfdc97a6105e3df66.tar.gz |
Update llvm to r84175.
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 2b5cc57..60865aa 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); } |