mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 02:40:06 +00:00
15 lines
270 B
C
15 lines
270 B
C
#ifdef HAVE_FMA4_SUPPORT
|
|
# include <init-arch.h>
|
|
# include <math.h>
|
|
|
|
extern double __tan_sse2 (double);
|
|
extern double __tan_fma4 (double);
|
|
|
|
libm_ifunc (tan, HAS_FMA4 ? __tan_fma4 : __tan_sse2);
|
|
|
|
# define tan __tan_sse2
|
|
#endif
|
|
|
|
|
|
#include <sysdeps/ieee754/dbl-64/s_tan.c>
|