about summary refs log tree commit diff
path: root/sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c
blob: 1b2701cadbbbe4b8a7e8600e9f8478af370947e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <sparc-ifunc.h>
#include <math.h>

extern __typeof (fma) __fma_vis3 attribute_hidden;
extern __typeof (fma) __fma_generic attribute_hidden;

sparc_libm_ifunc (__fma,
		  hwcap & HWCAP_SPARC_FMAF
		  ? __fma_vis3
		  : __fma_generic);
weak_alias (__fma, fma)