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-141-gd8a012c


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  d8a012c5c9e4bfc1b8db2bc6deacb85b44a2e1eb (commit)
      from  37a4c70bd4c5c74ac562072e450dc02e8cb4c150 (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=d8a012c5c9e4bfc1b8db2bc6deacb85b44a2e1eb

commit d8a012c5c9e4bfc1b8db2bc6deacb85b44a2e1eb
Author: Stefan Liebler <stli@linux.vnet.ibm.com>
Date:   Fri Apr 1 10:42:54 2016 +0200

    S390: Use ahi instead of aghi in 32bit _dl_runtime_resolve.
    
    This patch uses ahi instead of aghi in 32bit _dl_runtime_resolve
    to adjust the stack pointer. This is no functional change,
    but a cosmetic one.
    
    ChangeLog:
    
    	* sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
    	Use ahi instead of aghi to adjust stack pointer.

diff --git a/ChangeLog b/ChangeLog
index 29dd164..084c3d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-04-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
+
+	* sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
+	Use ahi instead of aghi to adjust stack pointer.
+
 2016-03-31  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 
 	[BZ #19853]
diff --git a/sysdeps/s390/s390-32/dl-trampoline.h b/sysdeps/s390/s390-32/dl-trampoline.h
index bb74d27..086449f 100644
--- a/sysdeps/s390/s390-32/dl-trampoline.h
+++ b/sysdeps/s390/s390-32/dl-trampoline.h
@@ -90,7 +90,7 @@ _dl_runtime_resolve:
 	.machinemode "zarch_nohighgprs"
 	vlm    %v24,%v31,96(%r15)	# restore vector registers
 	.machine pop
-	aghi   %r15,224			# remove stack frame
+	ahi   %r15,224			# remove stack frame
 	cfi_adjust_cfa_offset (-224)
 #else
 	ahi    %r15,96			# remove stack frame

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

Summary of changes:
 ChangeLog                            |    5 +++++
 sysdeps/s390/s390-32/dl-trampoline.h |    2 +-
 2 files changed, 6 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]