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.23-287-gcbc06bc


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  cbc06bc486635347ee0da51d04a82eedf51602d5 (commit)
      from  35281b18b8f9907213410ebbebc23c71b2ec357a (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=cbc06bc486635347ee0da51d04a82eedf51602d5

commit cbc06bc486635347ee0da51d04a82eedf51602d5
Author: Paul E. Murphy <murphyp@linux.vnet.ibm.com>
Date:   Tue May 3 10:45:51 2016 -0500

    powerpc: Add missing insn in swapcontext [BZ #20004]
    
    A missing instruction was discovered in the compat version of
    swapcontext while running the GCC test suite.

diff --git a/ChangeLog b/ChangeLog
index a551f70..64d1bc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-05-03  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
+	    Segher Boessenkool  <segher@gcc.gnu.org>
+
+	[BZ #20004]
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S:
+	(__novec_swapcontext): Add missing load.
+
 2016-05-02  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #20023]
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
index a166dcc..a05a9cc 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
@@ -163,6 +163,7 @@ ENTRY(__novec_swapcontext)
   cmpdi r0,0
   bne	  L(nv_do_sigret)
 
+  ld	r8,.LC__dl_hwcap@toc(r2)
 # ifdef SHARED
 /* Load _rtld-global._dl_hwcap.  */
   ld    r8,RTLD_GLOBAL_RO_DL_HWCAP_OFFSET(r8)

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

Summary of changes:
 ChangeLog                                          |    7 +++++++
 .../sysv/linux/powerpc/powerpc64/swapcontext.S     |    1 +
 2 files changed, 8 insertions(+), 0 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]