diff options
author | David Blaikie <dblaikie@gmail.com> | 2011-12-20 08:22:49 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2011-12-20 08:22:49 +0000 |
commit | 0c271bccf7b0e13f5c6fc84c1813c5e31190b960 (patch) | |
tree | 99703b77b84d9940bf1386cd37709678fd1e8fec /utils | |
parent | 7559766c63e4d94252d7ec3312ca7fff97fcf16e (diff) | |
download | external_llvm-0c271bccf7b0e13f5c6fc84c1813c5e31190b960.zip external_llvm-0c271bccf7b0e13f5c6fc84c1813c5e31190b960.tar.gz external_llvm-0c271bccf7b0e13f5c6fc84c1813c5e31190b960.tar.bz2 |
Revert pragma clang suppressions that confuse GCC. (I'll worry about how to suppress/fix these problems properly when we figure out how to keep LLVM -Wweak-vtables clean)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/TGValueTypes.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/TableGen/TGValueTypes.cpp b/utils/TableGen/TGValueTypes.cpp index acb9985..af0d9f4 100644 --- a/utils/TableGen/TGValueTypes.cpp +++ b/utils/TableGen/TGValueTypes.cpp @@ -18,9 +18,6 @@ #include <map> using namespace llvm; -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wweak-vtables" - namespace llvm { class Type { @@ -61,8 +58,6 @@ public: } }; -#pragma clang diagnostic pop - static std::map<unsigned, const Type *> ExtendedIntegerTypeMap; static std::map<std::pair<uintptr_t, uintptr_t>, const Type *> |