1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-10-30 10:45:40 +03:00

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.
This commit is contained in:
H.J. Lu
2017-08-28 08:45:53 -07:00
parent a48c0fb4b4
commit 5e2bc4ff33
2 changed files with 6 additions and 1 deletions

View File

@@ -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> 2017-08-28 Joseph Myers <joseph@codesourcery.com>
* math/math-svid-compat.h [!__ASSEMBLER__]: Make code * math/math-svid-compat.h [!__ASSEMBLER__]: Make code

View File

@@ -16,7 +16,7 @@
License along with the GNU C Library; if not, see License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */ <http://www.gnu.org/licenses/>. */
extern double __redirect_ieee754_expf (double); extern float __redirect_ieee754_expf (float);
#define SYMBOL_NAME ieee754_expf #define SYMBOL_NAME ieee754_expf
#include "ifunc-fma.h" #include "ifunc-fma.h"