aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/__algorithm
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2025-03-23 21:01:25 +0100
committerGitHub <noreply@github.com>2025-03-23 21:01:25 +0100
commitfb44f006413f814ea92690218046732fed049ca5 (patch)
tree23a40a7fd68520746b37818cb07a9e809c09af9e /libcxx/include/__algorithm
parent4781a8ebd0f3c0807adcbf5d8d6c72fd5839eb85 (diff)
downloadllvm-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.h8
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>