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.26-196-g5e2bc4f


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  5e2bc4ff3377bb94fd1baf9fef7751c61eca2118 (commit)
      from  a48c0fb4b4c322a0e0214f59516b9bb7883352f8 (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=5e2bc4ff3377bb94fd1baf9fef7751c61eca2118

commit 5e2bc4ff3377bb94fd1baf9fef7751c61eca2118
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Aug 28 08:45:53 2017 -0700

    x86_64 __redirect_ieee754_expf: Change double to float
    
    __redirect_ieee754_expf has type float, not double.
    
    	* sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
    	Change double to float.

diff --git a/ChangeLog b/ChangeLog
index d6aef6d..522029c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-08-28  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
+	Change double to float.
+
 2017-08-28  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/math-svid-compat.h [!__ASSEMBLER__]: Make code
diff --git a/sysdeps/x86_64/fpu/multiarch/e_expf.c b/sysdeps/x86_64/fpu/multiarch/e_expf.c
index 864d5f9..0962098 100644
--- a/sysdeps/x86_64/fpu/multiarch/e_expf.c
+++ b/sysdeps/x86_64/fpu/multiarch/e_expf.c
@@ -16,7 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-extern double __redirect_ieee754_expf (double);
+extern float __redirect_ieee754_expf (float);
 
 #define SYMBOL_NAME ieee754_expf
 #include "ifunc-fma.h"

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

Summary of changes:
 ChangeLog                             |    5 +++++
 sysdeps/x86_64/fpu/multiarch/e_expf.c |    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]