blob: dbed10e19a8955fa826e13cc7edfaf655c73b6ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <sparc-ifunc.h>
#include <math.h>
extern __typeof (fmaf) __fmaf_vis3 attribute_hidden;
extern __typeof (fmaf) __fmaf_generic attribute_hidden;
sparc_libm_ifunc (__fmaf,
hwcap & HWCAP_SPARC_FMAF
? __fmaf_vis3
: __fmaf_generic)
weak_alias (__fmaf, fmaf)
|