mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/i386/fpu/s_nextafterl.c: Decrement high word of mantissa of demorm correctly if low word is zero. Reported by Fred J. Tydeman <tydeman@tybor.com>.
This commit is contained in:
parent
7c6d00e623
commit
a439bb2fa3
|
@ -1,5 +1,9 @@
|
||||||
2003-02-14 Ulrich Drepper <drepper@redhat.com>
|
2003-02-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/i386/fpu/s_nextafterl.c: Decrement high word of mantissa
|
||||||
|
of demorm correctly if low word is zero.
|
||||||
|
Reported by Fred J. Tydeman <tydeman@tybor.com>.
|
||||||
|
|
||||||
* sysdeps/generic/libc-start.c [HAVE_PTR_NTHREADS]: Decrement thread
|
* sysdeps/generic/libc-start.c [HAVE_PTR_NTHREADS]: Decrement thread
|
||||||
counter and only call __exit_thread if this is not the last thread.
|
counter and only call __exit_thread if this is not the last thread.
|
||||||
|
|
||||||
|
|
|
@ -61,9 +61,9 @@ static char rcsid[] = "$NetBSD: $";
|
||||||
/* x > y, x -= ulp */
|
/* x > y, x -= ulp */
|
||||||
if(lx==0) {
|
if(lx==0) {
|
||||||
if (hx <= 0x80000000) {
|
if (hx <= 0x80000000) {
|
||||||
if (esx == 0)
|
if (esx == 0) {
|
||||||
hx = 0;
|
--hx;
|
||||||
else {
|
} else {
|
||||||
esx -= 1;
|
esx -= 1;
|
||||||
hx = hx - 1;
|
hx = hx - 1;
|
||||||
if (esx > 0)
|
if (esx > 0)
|
||||||
|
|
Loading…
Reference in New Issue