From: Andreas Jaeger Date: Mon, 9 Feb 2004 18:21:04 +0000 (+0000) Subject: PR 7 X-Git-Tag: cvs/fedora-base~847 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c085837878fbc6aeb8e1ba63fe88d02b27b84504;p=thirdparty%2Fglibc.git PR 7 * sysdeps/x86_64/memcpy.S: Fix alignment. Patch by Jan Beulich . --- diff --git a/sysdeps/x86_64/memcpy.S b/sysdeps/x86_64/memcpy.S index 136d6e57638..d9fde6e459f 100644 --- a/sysdeps/x86_64/memcpy.S +++ b/sysdeps/x86_64/memcpy.S @@ -46,7 +46,7 @@ ENTRY (BP_SYM (memcpy)) /* Align destination. */ movq %rdi, %rax negq %rax - andq $3, %rax + andq $7, %rax subq %rax, %rcx xchgq %rax, %rcx