mirror of git://sourceware.org/git/glibc.git
x86_64: Fix typo in ifunc-impl-list.c.
Fix wcsncpy and wcpncpy typo in ifunc-impl-list.c.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
(cherry picked from commit f2aeb6ff94)
This commit is contained in:
parent
31fa0f73e2
commit
ca41fe44a5
|
|
@ -928,7 +928,7 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|||
(CPU_FEATURE_USABLE (AVX2)
|
||||
&& CPU_FEATURE_USABLE (BMI2)),
|
||||
__wcsncpy_avx2)
|
||||
X86_IFUNC_IMPL_ADD_V2 (array, i, wcpncpy,
|
||||
X86_IFUNC_IMPL_ADD_V2 (array, i, wcsncpy,
|
||||
1,
|
||||
__wcsncpy_generic))
|
||||
|
||||
|
|
@ -958,7 +958,7 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|||
(CPU_FEATURE_USABLE (AVX2)
|
||||
&& CPU_FEATURE_USABLE (BMI2)),
|
||||
__wcpncpy_avx2)
|
||||
X86_IFUNC_IMPL_ADD_V2 (array, i, wcsncpy,
|
||||
X86_IFUNC_IMPL_ADD_V2 (array, i, wcpncpy,
|
||||
1,
|
||||
__wcpncpy_generic))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue