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 gentoo/2.22 updated. glibc-2.22-47-g3ffe1a9


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, gentoo/2.22 has been updated
       via  3ffe1a9e559b88ed2c1096a798cec5fb17194e99 (commit)
      from  209606141fb74f9bfa8ad4ca56900077f0cad2b7 (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=3ffe1a9e559b88ed2c1096a798cec5fb17194e99

commit 3ffe1a9e559b88ed2c1096a798cec5fb17194e99
Author: Andrew Senkevich <andrew.senkevich@intel.com>
Date:   Wed Feb 17 14:23:32 2016 -0800

    Use PIC relocation in ALIAS_IMPL
    
    Since libmvec_nonshared.a may be linked into shared objects, ALIAS_IMPL
    should use PIC relocation.
    
    	[BZ #19590]
    	* sysdeps/x86_64/fpu/svml_finite_alias.S (ALIAS_IMPL): Use PIC
    	relocation.
    
    (cherry picked from commit a5df3210a641c175138052037fcdad34298bfa4d)
    (cherry picked from commit 2b8ab5c3f618e4d9e0a9147c24f8cf6bbf35a1d8)

diff --git a/sysdeps/x86_64/fpu/svml_finite_alias.S b/sysdeps/x86_64/fpu/svml_finite_alias.S
index f8bcfeb..aed1661 100644
--- a/sysdeps/x86_64/fpu/svml_finite_alias.S
+++ b/sysdeps/x86_64/fpu/svml_finite_alias.S
@@ -23,8 +23,7 @@
 
 #define ALIAS_IMPL(alias, target) \
 ENTRY (alias); \
-	call target; \
-	ret; \
+	jmp *target@GOTPCREL(%rip); \
 END (alias)
 
 	.text

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

Summary of changes:
 sysdeps/x86_64/fpu/svml_finite_alias.S |    3 +--
 1 files changed, 1 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]