Suppress -Waligned-allocation-unavailable warning in libc++ test suite

llvm-svn: 307218
This commit is contained in:
Eric Fiselier 2017-07-05 22:40:58 +00:00
parent 9f9e99be20
commit 226dbd78eb
1 changed files with 1 additions and 0 deletions

View File

@ -888,6 +888,7 @@ class Configuration(object):
self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions') self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions')
self.cxx.addWarningFlagIfSupported('-Wno-user-defined-literals') self.cxx.addWarningFlagIfSupported('-Wno-user-defined-literals')
self.cxx.addWarningFlagIfSupported('-Wno-noexcept-type') self.cxx.addWarningFlagIfSupported('-Wno-noexcept-type')
self.cxx.addWarningFlagIfSupported('-Wno-aligned-allocation-unavailable')
# These warnings should be enabled in order to support the MSVC # These warnings should be enabled in order to support the MSVC
# team using the test suite; They enable the warnings below and # team using the test suite; They enable the warnings below and
# expect the test suite to be clean. # expect the test suite to be clean.