diff --git a/libcxx/include/type_traits b/libcxx/include/type_traits index c63dea4814050944e4a8a81fbbf318fc5eec8f64..735eab790771cf96f08737ac06b0e506028b1998 100644 --- a/libcxx/include/type_traits +++ b/libcxx/include/type_traits @@ -425,7 +425,7 @@ template using enable_if_t = typename enable_if<_Bp #endif // addressof -#if __has_builtin(__builtin_addressof) +#if __has_builtin(__builtin_addressof) || _GNUC_VER >= 700 template inline _LIBCPP_CONSTEXPR_AFTER_CXX14 diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py index 9812e358b65021b279b5a1eedb5bfd430d6b80d1..b05029d969ad6590f2226df0bc9545144c72b45e 100644 --- a/libcxx/test/libcxx/test/config.py +++ b/libcxx/test/libcxx/test/config.py @@ -179,6 +179,7 @@ class Configuration(object): assert self.cxx.version is not None maj_v, min_v, _ = self.cxx.version self.config.available_features.add(cxx_type) + self.config.available_features.add('%s-%s' % (cxx_type, maj_v)) self.config.available_features.add('%s-%s.%s' % ( cxx_type, maj_v, min_v)) diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/constexpr_addressof.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/constexpr_addressof.pass.cpp index a371f8eda1a80e9974fda9af13409d80b1d63bce..41f06c519609692c3bc7fc72d2b96d90f7beba1f 100644 --- a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/constexpr_addressof.pass.cpp +++ b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/constexpr_addressof.pass.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03, c++11, c++14 -// XFAIL: gcc +// XFAIL: gcc-4, gcc-5, gcc-6 //