1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

- Define the LDBL_PREC to be the number of significant bits in a long

double's mantissa.
- Add an assembly version of scalbnl.
This commit is contained in:
David Schultz 2005-03-07 04:53:48 +00:00
parent 4be31f0664
commit 99401fa2e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143209

View File

@ -9,3 +9,8 @@ ARCH_SRCS = e_exp.S e_fmod.S e_log.S e_log10.S \
ARCH_SRCS+= e_log10f.S e_logf.S e_remainderf.S e_scalbf.S \
e_sqrtf.S s_ceilf.S s_copysignf.S s_floorf.S s_logbf.S \
s_rintf.S s_scalbnf.S s_significandf.S
# long double counterparts
ARCH_SRCS+= s_scalbnl.S
LDBL_PREC = 64 # XXX 64-bit format, but truncated to 53 bits