about summary refs log tree commit diff
path: root/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c
blob: 95f2cea66cb3d8d2e5562f308b4098f856694b84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#define NO_MATH_REDIRECT
#include <sparc-ifunc.h>
#include <math.h>
#include <math_ldbl_opt.h>
#include <libm-alias-double.h>

extern double __fma_vis3 (double, double, double);
extern double __fma_generic (double, double, double);

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