From 99401fa2e952fd946d3b937ffd90f09699a024d7 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Mon, 7 Mar 2005 04:53:48 +0000 Subject: [PATCH] - Define the LDBL_PREC to be the number of significant bits in a long double's mantissa. - Add an assembly version of scalbnl. --- lib/msun/i387/Makefile.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/msun/i387/Makefile.inc b/lib/msun/i387/Makefile.inc index 5a6a46299dd..3be260ec2bb 100644 --- a/lib/msun/i387/Makefile.inc +++ b/lib/msun/i387/Makefile.inc @@ -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