mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Update.
2000-12-21 H.J. Lu <hjl@gnu.org> * 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.
This commit is contained in:
parent
4260c4120a
commit
912f97da3d
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2000-12-21 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* 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 <aj@suse.de>
|
||||
|
||||
* nis/nss_nisplus/nisplus-ethers.c (struct etherent): Removed.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-12-21 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* tests/test5.cm: Define code_set_name.
|
||||
|
||||
2000-12-03 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* charmaps/SJIS: Add mapping for FULLWIDTH REVERSE SOLIDUS.
|
||||
|
@ -1,3 +1,4 @@
|
||||
<code_set_name> test5
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
<mb_cur_max> 2
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user