summaryrefslogtreecommitdiff
path: root/lib/VMCore
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-15 10:27:23 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-15 10:27:23 +0000
commit8c8b9ee8c8646aa1a79c782d4da9abdf3eb4eefe (patch)
treef5e1cef0436b2d207e695f1aeeb169138b51513f /lib/VMCore
parent0b63f378650f53b26f57a39b63b4cbceaefc7bef (diff)
downloadllvm-8c8b9ee8c8646aa1a79c782d4da9abdf3eb4eefe.tar.gz
llvm-8c8b9ee8c8646aa1a79c782d4da9abdf3eb4eefe.tar.bz2
llvm-8c8b9ee8c8646aa1a79c782d4da9abdf3eb4eefe.tar.xz
Revert r111082. No warnings for this common pattern.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Verifier.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index 3aaf8cbe81..8ff1551424 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -151,8 +151,8 @@ namespace {
SmallSetVector<const Type *, 16> Types;
// Disallow copying.
- TypeSet(const TypeSet &) ATTRIBUTE_UNUSED;
- TypeSet &operator=(const TypeSet &) ATTRIBUTE_UNUSED;
+ TypeSet(const TypeSet &);
+ TypeSet &operator=(const TypeSet &);
};
struct Verifier : public FunctionPass, public InstVisitor<Verifier> {