1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

PowerPC: multirach memcmp for PowerPC64

This commit is contained in:
Adhemerval Zanella
2013-12-13 14:32:31 -05:00
parent b5beafbcee
commit 07253fcf7b
8 changed files with 184 additions and 2 deletions

View File

@ -29,6 +29,10 @@
#undef memcmp
#ifndef MEMCMP
# define MEMCMP memcmp
#endif
#ifdef _LIBC
# include <memcopy.h>
@ -304,7 +308,7 @@ memcmp_not_common_alignment (srcp1, srcp2, len)
}
int
memcmp (s1, s2, len)
MEMCMP (s1, s2, len)
const __ptr_t s1;
const __ptr_t s2;
size_t len;