]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(huge, tiny): Adapt values for long double type.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Mar 1997 04:08:21 +0000 (04:08 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Mar 1997 04:08:21 +0000 (04:08 +0000)
sysdeps/libm-ieee754/s_scalbnl.c

index d00eb881677f75df7fa5989f00486608e5032614..6825e9c7b3a4cec06b9dc69ebdfa7c402d0d9b95 100644 (file)
@@ -33,10 +33,10 @@ static const long double
 #else
 static long double
 #endif
-two54   =  1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
-twom54  =  5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
-huge   = 1.0e+300,
-tiny   = 1.0e-300;
+two54   =  1.80143985094819840000e+16, /* 0x4035, 0x00000000, 0x00000000 */
+twom54  =  5.55111512312578270212e-17, /* 0x3FC9, 0x00000000, 0x00000000 */
+huge   = 1.0e+4900L,
+tiny   = 1.0e-4900L;
 
 #ifdef __STDC__
        long double __scalbnl (long double x, int n)