mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Update.
1999-06-10 Jakub Jelinek <jj@ultra.linux.cz> * sysdeps/libm-ieee754/s_truncl.c: Subtract exponent bias from the raw exponent.
This commit is contained in:
parent
63ad72d21b
commit
58d33bb594
@ -1,3 +1,8 @@
|
||||
1999-06-10 Jakub Jelinek <jj@ultra.linux.cz>
|
||||
|
||||
* sysdeps/libm-ieee754/s_truncl.c: Subtract exponent
|
||||
bias from the raw exponent.
|
||||
|
||||
1999-06-11 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* inet/arpa/tftp.h: Move attribute declaration in right position.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Truncate argument to nearest integral value not larger than the argument.
|
||||
Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997, 1999 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||
|
||||
@ -32,7 +32,7 @@ __truncl (long double x)
|
||||
|
||||
GET_LDOUBLE_WORDS (se, i0, i1, x);
|
||||
sx = se & 0x8000;
|
||||
j0 = se & 0x7fff;
|
||||
j0 = (se & 0x7fff) - 0x3fff;
|
||||
if (j0 < 31)
|
||||
{
|
||||
if (j0 < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user