* sysdeps/x86_64/memcpy.S: Fix alignment. 
Patch by Jan Beulich <jbeulich@novell.com>.
This commit is contained in:
Andreas Jaeger 2004-02-09 18:21:04 +00:00
parent 1bc1a2b907
commit c085837878
1 changed files with 1 additions and 1 deletions

View File

@ -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