1 #include <sparc-ifunc.h>
3 #include <math_ldbl_opt.h>
5 extern double __fma_vis3 (double, double, double);
6 extern double __fma_generic (double, double, double);
8 sparc_libm_ifunc(__fma
, hwcap
& HWCAP_SPARC_FMAF
? __fma_vis3
: __fma_generic
);
9 weak_alias (__fma
, fma
)
10 #if LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)
11 compat_symbol (libm
, __fma
, fmal
, GLIBC_2_1
);