mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 09:30:06 +00:00
8a7923b57e
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.
10 lines
207 B
C
10 lines
207 B
C
#ifdef __alpha_ev6__
|
|
# define USE_SQRT_BUILTIN 1
|
|
# define USE_SQRTF_BUILTIN 1
|
|
#else
|
|
# define USE_SQRT_BUILTIN 0
|
|
# define USE_SQRTF_BUILTIN 0
|
|
#endif
|
|
#define USE_SQRTL_BUILTIN 0
|
|
#define USE_SQRTF128_BUILTIN 0
|