83e449a402
versions of fmodf() amd fmodl() on i387. fmod is similar to remainder, and the C versions are 3 to 9 times slower than the asm versions on x86 for both, but we had the strange mixture of all 6 variants of remainder in asm and only 1 of 6 variants of fmod in asm.
12 lines
381 B
Makefile
12 lines
381 B
Makefile
# $FreeBSD$
|
|
|
|
ARCH_SRCS = e_fmod.S e_fmodf.S e_fmodl.S \
|
|
e_remainder.S e_remainderf.S e_remainderl.S \
|
|
e_sqrt.S e_sqrtf.S e_sqrtl.S \
|
|
s_llrint.S s_llrintf.S s_llrintl.S \
|
|
s_logbl.S s_lrint.S s_lrintf.S s_lrintl.S \
|
|
s_remquo.S s_remquof.S s_remquol.S \
|
|
s_rintl.S s_scalbn.S s_scalbnf.S s_scalbnl.S
|
|
LDBL_PREC = 64
|
|
SYM_MAPS += ${.CURDIR}/amd64/Symbol.map
|