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.25-5-g0b20e02


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  0b20e02c976ddd89a4adaa3a0c26baec3e275161 (commit)
      from  df3a4e104fb63f96f05b29931dd83e272c2b7936 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0b20e02c976ddd89a4adaa3a0c26baec3e275161

commit 0b20e02c976ddd89a4adaa3a0c26baec3e275161
Author: Ivo Raisr <ivo.raisr@oracle.com>
Date:   Mon Feb 6 10:49:50 2017 -0200

    sparc: Remove unused assignment in __clone
    
    It is no longer needed to preserve the flags parameter to `clone' since
    the commit c579f48edba88380635ab98cb612030e3ed8691e (Remove cached
    PID/TID in clone).
    
    Testing was performed successfully on sparcv9/Linux.
    
    	[BZ #21075]
    	* sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): Remove
    	unused assignment.
    	* sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone): Likewise.

diff --git a/ChangeLog b/ChangeLog
index e4885cf..fa2fbf0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-02-06  Ivo Raisr <ivo.raisr@oracle.com>
+
+	[BZ #21075]
+	* sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): Remove
+	unused assignment.
+	* sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone): Likewise.
+
 2017-02-06  Stefan Liebler  <stli@linux.vnet.ibm.com>
 
 	* sysdeps/nptl/lowlevellock.h (lll_trylock, lll_cond_trylock):
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S
index 2e5d09d..6d2f5bd 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S
@@ -48,7 +48,6 @@ ENTRY (__clone)
 	   expects.  */
 	sub	%o1, 96, %o1
 	mov	%i3, %g3
-	mov	%i2, %g4
 
 	/* ptid */
 	mov	%i4,%o2
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S
index fea6bf7..fc28539 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S
@@ -51,7 +51,6 @@ ENTRY (__clone)
 	   expects.  Also, subtract STACK_BIAS.  */
 	sub	%i1, 192 + 0x7ff, %o1
 	mov	%i3, %g3
-	mov	%i2, %g4
 
 	mov	%i4,%o2			/* PTID */
 	mov	%i5,%o3			/* TLS */

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

Summary of changes:
 ChangeLog                                     |    7 +++++++
 sysdeps/unix/sysv/linux/sparc/sparc32/clone.S |    1 -
 sysdeps/unix/sysv/linux/sparc/sparc64/clone.S |    1 -
 3 files changed, 7 insertions(+), 2 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]