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 | 5ca16b1030e2bd6bf2e80d1de609f2675f1e86f7 (patch) | |
tree | 59ed6f88f0c222bc75647348469673de642d25ed | |
parent | 1a0ae42d14d51c68e48a45c76327791f668dbac5 (diff) | |
download | bcm5719-llvm-5ca16b1030e2bd6bf2e80d1de609f2675f1e86f7.tar.gz bcm5719-llvm-5ca16b1030e2bd6bf2e80d1de609f2675f1e86f7.zip |
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)
llvm-svn: 146965
-rw-r--r-- | llvm/utils/TableGen/TGValueTypes.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/utils/TableGen/TGValueTypes.cpp b/llvm/utils/TableGen/TGValueTypes.cpp index acb9985e499..af0d9f44cf4 100644 --- a/llvm/utils/TableGen/TGValueTypes.cpp +++ b/llvm/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 *> |