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.10-215-g009a69f


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  009a69f0bcce04d3743c9b59246e6885dbd2b100 (commit)
      from  16d2ea4c821502948d193a152c8b151f5497a0d3 (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=009a69f0bcce04d3743c9b59246e6885dbd2b100

commit 009a69f0bcce04d3743c9b59246e6885dbd2b100
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Mon Jul 27 06:55:04 2009 -0700

    No need for special strcmp for rtld.

diff --git a/ChangeLog b/ChangeLog
index 12ac487..801ec18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,7 +7,6 @@
 	* sysdeps/x86_64/rtld-memcmp.c: New file.
 	* sysdeps/x86_64/rtld-rawmemchr.c: New file.
 	* sysdeps/x86_64/rtld-strchr.S: New file.
-	* sysdeps/x86_64/rtld-strcmp.S: New file.
 	* sysdeps/x86_64/rtld-strlen.S: New file.
 	* sysdeps/x86_64/multiarch/rtld-rawmemchr.c: New file.
 	* sysdeps/x86_64/multiarch/rtld-strlen.S: New file.
diff --git a/sysdeps/x86_64/rtld-strcmp.S b/sysdeps/x86_64/rtld-strcmp.S
deleted file mode 100644
index a25535c..0000000
--- a/sysdeps/x86_64/rtld-strcmp.S
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <sysdep.h>
-#include "asm-syntax.h"
-#include "bp-sym.h"
-#include "bp-asm.h"
-
-#ifndef LABEL
-#define LABEL(l) L(l)
-#endif
-
-	.text
-ENTRY (BP_SYM (STRCMP))
-/* Simple version since we can't use SSE registers in ld.so.  */
-L(oop):	movb	(%rdi), %al
-	cmpb	(%rsi), %al
-	jne	L(neq)
-	incq	%rdi
-	incq	%rsi
-	testb	%al, %al
-	jnz	L(oop)
-
-	xorl	%eax, %eax
-	ret
-
-L(neq):	movl	$1, %eax
-	movl	$-1, %ecx
-	cmovbl	%ecx, %eax
-	ret
-END (BP_SYM (STRCMP))

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

Summary of changes:
 ChangeLog                    |    1 -
 sysdeps/x86_64/rtld-strcmp.S |   28 ----------------------------
 2 files changed, 0 insertions(+), 29 deletions(-)
 delete mode 100644 sysdeps/x86_64/rtld-strcmp.S


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]