diff options
author | Andreas Jaeger <aj@suse.de> | 2004-02-09 18:21:04 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2004-02-09 18:21:04 +0000 |
commit | c085837878fbc6aeb8e1ba63fe88d02b27b84504 (patch) | |
tree | d8f887a71f8e152a7db245b6a70139edb9af9a26 /sysdeps/x86_64 | |
parent | 1bc1a2b9076b8383ed82dbe1996b738515544246 (diff) | |
download | glibc-c085837878fbc6aeb8e1ba63fe88d02b27b84504.zip glibc-c085837878fbc6aeb8e1ba63fe88d02b27b84504.tar.gz glibc-c085837878fbc6aeb8e1ba63fe88d02b27b84504.tar.bz2 |
PR 7
* sysdeps/x86_64/memcpy.S: Fix alignment.
Patch by Jan Beulich <jbeulich@novell.com>.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/memcpy.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86_64/memcpy.S b/sysdeps/x86_64/memcpy.S index 136d6e5..d9fde6e 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 |