summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2005-04-23 18:45:36 +0000
committerAlan Cox <alc@FreeBSD.org>2005-04-23 18:45:36 +0000
commit97cd6892baef6b9f9fd61cac313d9abc9e983041 (patch)
tree21f5d7b0181722a7dba2becf3b723e5d48f73676 /lib/libc
parent6b148928660f33f37559c41b56d13943335b49fb (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/amd64/string/strcpy.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/amd64/string/strcpy.S b/lib/libc/amd64/string/strcpy.S
index c67406dff550..04676fa1170a 100644
--- a/lib/libc/amd64/string/strcpy.S
+++ b/lib/libc/amd64/string/strcpy.S
@@ -32,7 +32,6 @@ ENTRY(strcpy)
* Align source to a word boundary.
* Consider unrolling loop?
*/
- .align 4
.Lalign:
testb $7,%sil
je .Lword_aligned
@@ -44,7 +43,7 @@ ENTRY(strcpy)
jne .Lalign
ret
- .align 4
+ .p2align 4
.Lloop:
movq %rdx,(%rdi)
addq $8,%rdi