mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-12 22:30:12 +00:00
x86: Add definition for __wmemset_chk AVX2 RTM in ifunc impl list
This was simply missing and meant we weren't testing it properly.
(cherry picked from commit 2a1099020c
)
This commit is contained in:
parent
aadd0a1c7c
commit
f4598f0351
@ -1032,6 +1032,10 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
||||
IFUNC_IMPL_ADD (array, i, __wmemset_chk,
|
||||
CPU_FEATURE_USABLE (AVX2),
|
||||
__wmemset_chk_avx2_unaligned)
|
||||
IFUNC_IMPL_ADD (array, i, __wmemset_chk,
|
||||
(CPU_FEATURE_USABLE (AVX2)
|
||||
&& CPU_FEATURE_USABLE (RTM)),
|
||||
__wmemset_chk_avx2_unaligned_rtm)
|
||||
IFUNC_IMPL_ADD (array, i, __wmemset_chk,
|
||||
(CPU_FEATURE_USABLE (AVX512VL)
|
||||
&& CPU_FEATURE_USABLE (AVX512BW)
|
||||
|
Loading…
Reference in New Issue
Block a user