[libc++] Marks __cpp_lib_bitops as implemented.

This FTM was introduced in
  P0553R4 Bit operations

Which has been implemented since libc++ 9.

This was noticed while working on D153192.

Reviewed By: #libc, philnik

Differential Revision: https://reviews.llvm.org/D153225
This commit is contained in:
Mark de Wever 2023-06-18 12:35:44 +02:00
parent e8b3ba2355
commit a4f0764aef
5 changed files with 32 additions and 69 deletions

View File

@ -192,7 +192,7 @@ Status
--------------------------------------------------- -----------------
``__cpp_lib_bit_cast`` ``201806L``
--------------------------------------------------- -----------------
``__cpp_lib_bitops`` *unimplemented*
``__cpp_lib_bitops`` ``201907L``
--------------------------------------------------- -----------------
``__cpp_lib_bounded_array_traits`` ``201902L``
--------------------------------------------------- -----------------

View File

@ -332,7 +332,7 @@ __cpp_lib_within_lifetime 202306L <type_traits>
# endif
# define __cpp_lib_bind_front 201907L
# define __cpp_lib_bit_cast 201806L
// # define __cpp_lib_bitops 201907L
# define __cpp_lib_bitops 201907L
# define __cpp_lib_bounded_array_traits 201902L
# if !defined(_LIBCPP_HAS_NO_CHAR8_T)
# define __cpp_lib_char8_t 201907L

View File

@ -101,17 +101,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++20"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++20"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++20"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++20"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++20"
# endif
# ifdef __cpp_lib_byteswap
@ -141,17 +135,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++23"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++23"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++23"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++23"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++23"
# endif
# ifndef __cpp_lib_byteswap
@ -184,17 +172,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++26"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++26"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++26"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++26"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++26"
# endif
# ifndef __cpp_lib_byteswap

View File

@ -2846,17 +2846,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++20"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++20"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++20"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++20"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++20"
# endif
# ifdef __cpp_lib_bitset
@ -4127,17 +4121,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++23"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++23"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++23"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++23"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++23"
# endif
# ifdef __cpp_lib_bitset
@ -5615,17 +5603,11 @@
# error "__cpp_lib_bit_cast should have the value 201806L in c++26"
# endif
# if !defined(_LIBCPP_VERSION)
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++26"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++26"
# endif
# else // _LIBCPP_VERSION
# ifdef __cpp_lib_bitops
# error "__cpp_lib_bitops should not be defined because it is unimplemented in libc++!"
# endif
# ifndef __cpp_lib_bitops
# error "__cpp_lib_bitops should be defined in c++26"
# endif
# if __cpp_lib_bitops != 201907L
# error "__cpp_lib_bitops should have the value 201907L in c++26"
# endif
# if !defined(_LIBCPP_VERSION)

View File

@ -226,7 +226,6 @@ feature_test_macros = [
"name": "__cpp_lib_bitops",
"values": {"c++20": 201907},
"headers": ["bit"],
"unimplemented": True,
},
{
"name": "__cpp_lib_bitset",