Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / sparc / sparc32 / sparcv9 / fpu / multiarch / s_fmaf.c
blob7a273a3b137a5678c8dbb88130821cc4151e8590
1 #ifdef HAVE_AS_VIS3_SUPPORT
2 # include <sparc-ifunc.h>
3 # include <math.h>
5 extern float __fmaf_vis3 (float, float, float);
6 extern float __fmaf_generic (float, float, float);
8 sparc_libm_ifunc(__fmaf, hwcap & HWCAP_SPARC_FMAF ? __fmaf_vis3 : __fmaf_generic);
9 weak_alias (__fmaf, fmaf)
11 # define __fmaf __fmaf_generic
12 #endif
14 #include <sysdeps/ieee754/dbl-64/s_fmaf.c>