From: Jonathan Wakely Date: Fri, 26 Nov 2021 11:03:06 +0000 (+0000) Subject: libstdc++: Move std::to_address tests to more appropriate place X-Git-Tag: basepoints/gcc-13~2774 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0178b73a02021551f83e3e52c4819c4096513301;p=thirdparty%2Fgcc.git libstdc++: Move std::to_address tests to more appropriate place Some of the checks in 20_util/pointer_traits/lwg3545.cc really belong in 20_util/to_address/lwg3545 instead. This also fixes the ordering of the dg-options and dg-do directives. libstdc++-v3/ChangeLog: * testsuite/20_util/pointer_traits/lwg3545.cc: Move to_address tests to ... * testsuite/20_util/to_address/lwg3545.cc: ... here. Add -std option before checking effective target. --- diff --git a/libstdc++-v3/testsuite/20_util/pointer_traits/lwg3545.cc b/libstdc++-v3/testsuite/20_util/pointer_traits/lwg3545.cc index 8325cb66d085..08c3ed01b750 100644 --- a/libstdc++-v3/testsuite/20_util/pointer_traits/lwg3545.cc +++ b/libstdc++-v3/testsuite/20_util/pointer_traits/lwg3545.cc @@ -99,22 +99,3 @@ static_assert( is_same, clever_ptr>::value, "" ); static_assert( is_same, std::ptrdiff_t>::value, "" ); static_assert( is_same, clever_ptr>::value, "" ); static_assert( is_same, clever_ptr>::value, "" ); - -#if __cplusplus >= 202002L -static_assert( std::to_address(clever_ptr{}) == &clever_ptr::obj, "" ); - -int the_int; - -template<> -struct std::pointer_traits> -{ - using element_type = int; - using difference_type = std::ptrdiff_t; - using pointer = clever_ptr; - - static constexpr int* to_address(pointer p) { return &the_int; } -}; - -// Should use pointer_traits>::to_address -static_assert( std::to_address(clever_ptr{}) == &the_int, "" ); -#endif diff --git a/libstdc++-v3/testsuite/20_util/to_address/lwg3545.cc b/libstdc++-v3/testsuite/20_util/to_address/lwg3545.cc index 4dc5fdcdde0c..a80ac29b2c97 100644 --- a/libstdc++-v3/testsuite/20_util/to_address/lwg3545.cc +++ b/libstdc++-v3/testsuite/20_util/to_address/lwg3545.cc @@ -1,5 +1,5 @@ -// { dg-do compile { target c++20 } } // { dg-options "-std=gnu++20" } +// { dg-do compile { target c++20 } } #include @@ -10,3 +10,28 @@ template struct nttp_ptr // This gives an error in C++20, which the LWG 3545 resolution should fix: auto x = std::to_address( nttp_ptr() ); + +template +struct clever_ptr +{ + static T obj; + constexpr T* operator->() const { return &obj; } +}; + +// pointer_traits specialization is valid, but to_address uses operator-> +static_assert( std::to_address(clever_ptr{}) == &clever_ptr::obj ); + +int the_int; + +template<> +struct std::pointer_traits> +{ + using element_type = int; + using difference_type = std::ptrdiff_t; + using pointer = clever_ptr; + + static constexpr int* to_address(pointer p) { return &the_int; } +}; + +// Uses pointer_traits>::to_address +static_assert( std::to_address(clever_ptr{}) == &the_int );