From 912f97da3d96796a2e2ffe2cd91b4d5a2a2472e1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 21 Dec 2000 23:42:32 +0000 Subject: [PATCH] Update. 2000-12-21 H.J. Lu * sysdeps/ia64/fpu/math_ldbl.h (ieee_long_double_shape_type): Make sign_exponent element signed. * sysdeps/ieee754/ldbl-96/math_ldbl.h (ieee_long_double_shape_type): Fix a typo. * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Remove dead branch. --- ChangeLog | 10 ++++++++++ localedata/ChangeLog | 4 ++++ localedata/tests/test5.cm | 1 + sysdeps/i386/fpu/s_nextafterl.c | 4 ---- sysdeps/ia64/fpu/math_ldbl.h | 4 ++-- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 78d25d0..5a7c77a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2000-12-21 H.J. Lu + + * sysdeps/ia64/fpu/math_ldbl.h (ieee_long_double_shape_type): + Make sign_exponent element signed. + + * sysdeps/ieee754/ldbl-96/math_ldbl.h (ieee_long_double_shape_type): + Fix a typo. + + * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Remove dead branch. + 2000-12-21 Andreas Jaeger * nis/nss_nisplus/nisplus-ethers.c (struct etherent): Removed. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 5a1af0c..ef99668 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,7 @@ +2000-12-21 Ulrich Drepper + + * tests/test5.cm: Define code_set_name. + 2000-12-03 Ulrich Drepper * charmaps/SJIS: Add mapping for FULLWIDTH REVERSE SOLIDUS. diff --git a/localedata/tests/test5.cm b/localedata/tests/test5.cm index ed63b79..bb7b360 100644 --- a/localedata/tests/test5.cm +++ b/localedata/tests/test5.cm @@ -1,3 +1,4 @@ + test5 % / 2 diff --git a/sysdeps/i386/fpu/s_nextafterl.c b/sysdeps/i386/fpu/s_nextafterl.c index b999147..82a0190 100644 --- a/sysdeps/i386/fpu/s_nextafterl.c +++ b/sysdeps/i386/fpu/s_nextafterl.c @@ -88,14 +88,10 @@ static char rcsid[] = "$NetBSD: $"; /* x < y, x -= ulp */ if(lx==0) { if (hx <= 0x80000000) { - if (esx == 0) - hx = 0; - else { esx -= 1; hx = hx - 1; if ((esx&0x7fff) > 0) hx |= 0x80000000; - } } else hx -= 1; } diff --git a/sysdeps/ia64/fpu/math_ldbl.h b/sysdeps/ia64/fpu/math_ldbl.h index e329b70..475ca79 100644 --- a/sysdeps/ia64/fpu/math_ldbl.h +++ b/sysdeps/ia64/fpu/math_ldbl.h @@ -13,7 +13,7 @@ typedef union struct { unsigned int empty0:32; - unsigned int sign_exponent:16; + int sign_exponent:16; unsigned int empty1:16; u_int32_t msw; u_int32_t lsw; @@ -31,7 +31,7 @@ typedef union { u_int32_t lsw; u_int32_t msw; - unsigned int sign_exponent:16; + int sign_exponent:16; unsigned int empty1:16; unsigned int empty0:32; } parts; -- 2.7.4