From: H.J. Lu Date: Mon, 28 Aug 2017 15:45:53 +0000 (-0700) Subject: x86_64 __redirect_ieee754_expf: Change double to float X-Git-Tag: glibc-2.27~1063 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e2bc4ff3377bb94fd1baf9fef7751c61eca2118;p=thirdparty%2Fglibc.git 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 d6aef6da037..522029c844a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-08-28 H.J. Lu + + * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf): + Change double to float. + 2017-08-28 Joseph Myers * 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 864d5f9b21a..096209857ef 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 . */ -extern double __redirect_ieee754_expf (double); +extern float __redirect_ieee754_expf (float); #define SYMBOL_NAME ieee754_expf #include "ifunc-fma.h"