diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2025-03-23 21:01:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-23 21:01:25 +0100 |
commit | fb44f006413f814ea92690218046732fed049ca5 (patch) | |
tree | 23a40a7fd68520746b37818cb07a9e809c09af9e /libcxx/include/__algorithm | |
parent | 4781a8ebd0f3c0807adcbf5d8d6c72fd5839eb85 (diff) | |
download | llvm-fb44f006413f814ea92690218046732fed049ca5.zip llvm-fb44f006413f814ea92690218046732fed049ca5.tar.gz llvm-fb44f006413f814ea92690218046732fed049ca5.tar.bz2 |
[libc++] Add [[gnu::nodebug]] on type traits (#128502)
Diffstat (limited to 'libcxx/include/__algorithm')
-rw-r--r-- | libcxx/include/__algorithm/simd_utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/__algorithm/simd_utils.h b/libcxx/include/__algorithm/simd_utils.h index e3c7909..6ee7bd4 100644 --- a/libcxx/include/__algorithm/simd_utils.h +++ b/libcxx/include/__algorithm/simd_utils.h @@ -51,20 +51,20 @@ struct __get_as_integer_type_impl; template <> struct __get_as_integer_type_impl<1> { - using type = uint8_t; + using type _LIBCPP_NODEBUG = uint8_t; }; template <> struct __get_as_integer_type_impl<2> { - using type = uint16_t; + using type _LIBCPP_NODEBUG = uint16_t; }; template <> struct __get_as_integer_type_impl<4> { - using type = uint32_t; + using type _LIBCPP_NODEBUG = uint32_t; }; template <> struct __get_as_integer_type_impl<8> { - using type = uint64_t; + using type _LIBCPP_NODEBUG = uint64_t; }; template <class _Tp> |