aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/powerpc
diff options
context:
space:
mode:
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>2015-01-20 22:02:03 -0500
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>2015-02-09 06:42:28 -0500
commit6f0993a6387158aac2b1b7ff6f8e4ffd75877d2a (patch)
treec093e6867020661d7f2572c150f7707d68e39ead /sysdeps/powerpc
parent3001e54c5786f714537acfb631b502e2229f883f (diff)
downloadglibc-6f0993a6387158aac2b1b7ff6f8e4ffd75877d2a.tar
glibc-6f0993a6387158aac2b1b7ff6f8e4ffd75877d2a.tar.gz
glibc-6f0993a6387158aac2b1b7ff6f8e4ffd75877d2a.tar.bz2
glibc-6f0993a6387158aac2b1b7ff6f8e4ffd75877d2a.zip
powerpc: Simplify bcopy default implementation
This patch simplify the default bcopy symbol for powerpc64 by just using memmove instead of implementing using the default bcopy. Since the symbol is deprecated, it trades speed by code size.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r--sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c
index 14ecb9fc9b..eb182b265a 100644
--- a/sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c
+++ b/sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c
@@ -18,8 +18,10 @@
#include <string.h>
-extern __typeof (bcopy) __bcopy_ppc attribute_hidden;
+extern __typeof (bcopy) __bcopy_ppc attribute_hidden;
+extern __typeof (memmove) __memmove_ppc attribute_hidden;
-#define bcopy __bcopy_ppc
-
-#include <string/bcopy.c>
+void __bcopy_ppc (const void *src, void *dest, size_t n)
+{
+ __memmove_ppc (dest, src, n);
+}