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-132-g9ea3de1


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  9ea3de11f11d8ed0a99b38f63ce5741be80b93a2 (commit)
      from  107b2fa56c15572ae56fb4ed18b50b58aff39b7f (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=9ea3de11f11d8ed0a99b38f63ce5741be80b93a2

commit 9ea3de11f11d8ed0a99b38f63ce5741be80b93a2
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Thu Aug 26 22:17:03 2010 -0700

    Move slow Atom code to separate section.

diff --git a/ChangeLog b/ChangeLog
index 6a1bd6a..1ed9f56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-08-27  Ulrich Drepper  <drepper@redhat.com>
+
+	* sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
+
+	* sysdeps/x86_64/strlen.S: Minimal code improvement.
+
 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/x86_64/strlen.S: Unroll the loop.
diff --git a/sysdeps/x86_64/multiarch/strlen-no-bsf.S b/sysdeps/x86_64/multiarch/strlen-no-bsf.S
index 29ad822..3e52f81 100644
--- a/sysdeps/x86_64/multiarch/strlen-no-bsf.S
+++ b/sysdeps/x86_64/multiarch/strlen-no-bsf.S
@@ -22,7 +22,7 @@
 
 #include <sysdep.h>
 
-	.text
+	.section .text.slow,"ax",@progbits
 ENTRY (__strlen_no_bsf)
 	xor	%eax, %eax
 	cmpb	$0, (%rdi)

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

Summary of changes:
 ChangeLog                                |    6 ++++++
 sysdeps/x86_64/multiarch/strlen-no-bsf.S |    2 +-
 2 files changed, 7 insertions(+), 1 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]