mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 08:40:07 +00:00
PowerPC: Add ifunc tests for memmove
This patch add the missing ifunc tests definition for memmove ppc32
optimization patch (commit 07aedd7
).
This commit is contained in:
parent
7c33f1e52c
commit
91f4b564bd
@ -1,3 +1,8 @@
|
||||
2014-07-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
||||
|
||||
* sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
|
||||
(__libc_ifunc_impl_list): Add memmove functions.
|
||||
|
||||
2014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
|
||||
* localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
|
||||
|
@ -59,6 +59,12 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
||||
__memcpy_cell)
|
||||
IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_ppc))
|
||||
|
||||
/* Support sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c. */
|
||||
IFUNC_IMPL (i, name, memmove,
|
||||
IFUNC_IMPL_ADD (array, i, memmove, hwcap & PPC_FEATURE_HAS_VSX,
|
||||
__memmove_power7)
|
||||
IFUNC_IMPL_ADD (array, i, memmove, 1, __memmove_ppc))
|
||||
|
||||
/* Support sysdeps/powerpc/powerpc32/power4/multiarch/memset.c. */
|
||||
IFUNC_IMPL (i, name, memset,
|
||||
IFUNC_IMPL_ADD (array, i, memset, hwcap & PPC_FEATURE_HAS_VSX,
|
||||
|
Loading…
Reference in New Issue
Block a user