This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.12-133-g01d2601


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  01d2601561afcd4feeb3310176ff96909c4d2e47 (commit)
      from  9ea3de11f11d8ed0a99b38f63ce5741be80b93a2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=01d2601561afcd4feeb3310176ff96909c4d2e47

commit 01d2601561afcd4feeb3310176ff96909c4d2e47
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Thu Aug 26 22:35:42 2010 -0700

    Fix typo in last commit.

diff --git a/sysdeps/x86_64/strlen.S b/sysdeps/x86_64/strlen.S
index ee94377..28f8287 100644
--- a/sysdeps/x86_64/strlen.S
+++ b/sysdeps/x86_64/strlen.S
@@ -84,19 +84,19 @@ L(exit_less16):
 L(exit16):
 	sub	%rdi, %rax
 	bsf	%rdx, %rdx
-	lea	16(%rdx), %rax
+	lea	16(%rdx,%rax), %rax
 	ret
 	.p2align 4
 L(exit32):
 	sub	%rdi, %rax
 	bsf	%rdx, %rdx
-	lea	32(%rdx), %rax
+	lea	32(%rdx,%rax), %rax
 	ret
 	.p2align 4
 L(exit48):
 	sub	%rdi, %rax
 	bsf	%rdx, %rdx
-	lea	48(%rdx), %rax
+	lea	48(%rdx,%rax), %rax
 	ret
 END(strlen)
 libc_hidden_builtin_def (strlen)

-----------------------------------------------------------------------

Summary of changes:
 sysdeps/x86_64/strlen.S |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]