glibc/sysdeps/alpha/fpu/e_sqrtf.c
Adhemerval Zanella 8a7923b57e alpha: Use builtin sqrt{f}
The generic implementation is simplified by removing the
'optimization' for !_IEEE_FP_INEXACT (which does not handle
inexact neither some values).

Checked on alpha-linux-gnu.
2020-06-22 11:09:49 -03:00

9 lines
250 B
C

#include <shlib-compat.h>
#include <sysdeps/ieee754/flt-32/e_sqrtf.c>
#if SHLIB_COMPAT (libm, GLIBC_2_18, GLIBC_2_31)
strong_alias (__ieee754_sqrtf, __sqrtf_finite_2_18)
compat_symbol (libm, __sqrtf_finite_2_18, __sqrtf_finite, GLIBC_2_18);
#endif