x86_64 __redirect_ieee754_expf: Change double to float
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 28 Aug 2017 15:45:53 +0000 (08:45 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 28 Aug 2017 15:45:53 +0000 (08:45 -0700)
__redirect_ieee754_expf has type float, not double.

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

ChangeLog
sysdeps/x86_64/fpu/multiarch/e_expf.c

index d6aef6d..522029c 100644 (file)
--- 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
index 864d5f9..0962098 100644 (file)
@@ -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"