sparc: Assume VIS3 support
[glibc.git] / sysdeps / sparc / sparc32 / sparcv9 / fpu / multiarch / s_fma.c
blob3d0c1650cf9446bc20e0a30e4235ca2bfccf4265
1 #include <sparc-ifunc.h>
2 #include <math.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);
12 #endif