summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Verifier.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-14 21:35:10 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-14 21:35:10 +0000
commit7c09ddf0aedcd12e962b16525615c85dea907219 (patch)
treec1cfd46ce5e8b63ccd839c31c421a6fdc26a4ea8 /llvm/lib/VMCore/Verifier.cpp
parent2a2e21c902dac5b156ed1b0b8721c70e1315a2da (diff)
downloadbcm5719-llvm-7c09ddf0aedcd12e962b16525615c85dea907219.tar.gz
bcm5719-llvm-7c09ddf0aedcd12e962b16525615c85dea907219.zip
Add ATTRIBUTE_UNUSED to methods that are not supposed to be used.
llvm-svn: 111082
Diffstat (limited to 'llvm/lib/VMCore/Verifier.cpp')
-rw-r--r--llvm/lib/VMCore/Verifier.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp
index 8ff15514243..3aaf8cbe810 100644
--- a/llvm/lib/VMCore/Verifier.cpp
+++ b/llvm/lib/VMCore/Verifier.cpp
@@ -151,8 +151,8 @@ namespace {
SmallSetVector<const Type *, 16> Types;
// Disallow copying.
- TypeSet(const TypeSet &);
- TypeSet &operator=(const TypeSet &);
+ TypeSet(const TypeSet &) ATTRIBUTE_UNUSED;
+ TypeSet &operator=(const TypeSet &) ATTRIBUTE_UNUSED;
};
struct Verifier : public FunctionPass, public InstVisitor<Verifier> {
OpenPOWER on IntegriCloud