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 nsz/math updated. glibc-2.26-398-gd653a7d


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, nsz/math has been updated
       via  d653a7d0f6e3dca8caf1bbb44f81a0f3af5c0a39 (commit)
      from  49465364630917b0d410e374c9873e47dcb7c055 (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=d653a7d0f6e3dca8caf1bbb44f81a0f3af5c0a39

commit d653a7d0f6e3dca8caf1bbb44f81a0f3af5c0a39
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Sep 27 09:54:19 2017 +0100

    e_exp2f.c: Support multiarch
    
    This is to support compiling e_exp2f.c more than once for multiarch.
    
    	* sysdeps/ieee754/flt-32/e_exp2f.c [__exp2f] (__ieee754_exp2f,
    	__exp2f_finite, exp2f): Skip.

diff --git a/sysdeps/ieee754/flt-32/e_exp2f.c b/sysdeps/ieee754/flt-32/e_exp2f.c
index b53a919..e54a88f 100644
--- a/sysdeps/ieee754/flt-32/e_exp2f.c
+++ b/sysdeps/ieee754/flt-32/e_exp2f.c
@@ -86,6 +86,9 @@ __exp2f (float x)
   y = y * s;
   return (float) y;
 }
+
+#ifndef __exp2f
 strong_alias (__exp2f, __ieee754_exp2f)
 strong_alias (__exp2f, __exp2f_finite)
 versioned_symbol (libm, __exp2f, exp2f, GLIBC_2_27);
+#endif

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

Summary of changes:
 sysdeps/ieee754/flt-32/e_exp2f.c |    3 +++
 1 files changed, 3 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]