mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
a5b81e1fb7
Some of the AVX-specific code is not giving enough speed-up to justify the extra code.
24 lines
662 B
C
24 lines
662 B
C
#ifdef HAVE_FMA4_SUPPORT
|
|
# include <init-arch.h>
|
|
# include <math_private.h>
|
|
|
|
extern double __ieee754_acos_sse2 (double);
|
|
extern double __ieee754_asin_sse2 (double);
|
|
extern double __ieee754_acos_fma4 (double);
|
|
extern double __ieee754_asin_fma4 (double);
|
|
|
|
libm_ifunc (__ieee754_acos,
|
|
HAS_FMA4 ? __ieee754_acos_fma4 : __ieee754_acos_sse2);
|
|
strong_alias (__ieee754_acos, __acos_finite)
|
|
|
|
libm_ifunc (__ieee754_asin,
|
|
HAS_FMA4 ? __ieee754_asin_fma4 : __ieee754_asin_sse2);
|
|
strong_alias (__ieee754_asin, __asin_finite)
|
|
|
|
# define __ieee754_acos __ieee754_acos_sse2
|
|
# define __ieee754_asin __ieee754_asin_sse2
|
|
#endif
|
|
|
|
|
|
#include <sysdeps/ieee754/dbl-64/e_asin.c>
|