[libcxx] r307218 - Suppress -Waligned-allocation-unavailable warning in libc++ test suite

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 5 15:40:59 PDT 2017


Author: ericwf
Date: Wed Jul  5 15:40:58 2017
New Revision: 307218

URL: http://llvm.org/viewvc/llvm-project?rev=307218&view=rev
Log:
Suppress -Waligned-allocation-unavailable warning in libc++ test suite

Modified:
    libcxx/trunk/utils/libcxx/test/config.py

Modified: libcxx/trunk/utils/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/libcxx/test/config.py?rev=307218&r1=307217&r2=307218&view=diff
==============================================================================
--- libcxx/trunk/utils/libcxx/test/config.py (original)
+++ libcxx/trunk/utils/libcxx/test/config.py Wed Jul  5 15:40:58 2017
@@ -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.




More information about the cfe-commits mailing list