mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 17:50:20 +00:00
169ea8f928
The powerpc sqrt implementation is also simplified: - the static constants are open coded within the implementation. - for !USE_SQRT_BUILTIN the function is implemented directly on __ieee754_sqrt (it avoid an superflous extra jump). Checked on powerpc-linux-gnu and powerpc64le-linux-gnu.
10 lines
205 B
C
10 lines
205 B
C
#ifdef _ARCH_PPCSQ
|
|
# 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
|