diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-07-05 22:40:58 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-07-05 22:40:58 +0000 |
commit | 226dbd78ebeacfe8d4ede274851130f23d9c52c7 (patch) | |
tree | d1affd2621efa4b3c6af2d20158b0252093db223 | |
parent | 9f9e99be20c473928249698472c68f307d1d1e86 (diff) | |
download | bcm5719-llvm-226dbd78ebeacfe8d4ede274851130f23d9c52c7.tar.gz bcm5719-llvm-226dbd78ebeacfe8d4ede274851130f23d9c52c7.zip |
Suppress -Waligned-allocation-unavailable warning in libc++ test suite
llvm-svn: 307218
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index 96b3df55ede..0d5249b3ff2 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -888,6 +888,7 @@ class Configuration(object): self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions') self.cxx.addWarningFlagIfSupported('-Wno-user-defined-literals') self.cxx.addWarningFlagIfSupported('-Wno-noexcept-type') + self.cxx.addWarningFlagIfSupported('-Wno-aligned-allocation-unavailable') # These warnings should be enabled in order to support the MSVC # team using the test suite; They enable the warnings below and # expect the test suite to be clean. |