diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-05-29 12:00:22 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-05-29 12:00:22 -0700 |
commit | 7f3394bdf34e28b374e5569a7a74ddac734fb172 (patch) | |
tree | 70e5277461d3299d9706f79077843710dddbd177 /ChangeLog | |
parent | b8bb339f7d684654295aca2dedb69c2c069a7cab (diff) | |
download | glibc-7f3394bdf34e28b374e5569a7a74ddac734fb172.tar.gz glibc-7f3394bdf34e28b374e5569a7a74ddac734fb172.tar.xz glibc-7f3394bdf34e28b374e5569a7a74ddac734fb172.zip |
Fix errno for boundary conditions in 128-bit long double.
Similar to the changes which went already in for the other formats, follow POSIX rules for errno.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 99ff1e390b..b1fec55266 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,16 @@ 2009-05-29 Jakub Jelinek <jakub@redhat.com> + * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <errno.h>. + (__expm1l): Set errno to ERANGE on overflow. + * sysdeps/ieee754/ldbl-128/s_tanl.c: Include <errno.h>. + (__tanl): Set errno to EDOM for ±Inf. + * sysdeps/ieee754/ldbl-128/s_cosl.c: Include <errno.h>. + (__cosl): Set errno to EDOM for ±Inf. + * sysdeps/ieee754/ldbl-128/s_sinl.c: Include <errno.h>. + (__sinl): Set errno to EDOM for ±Inf. + +2009-05-29 Jakub Jelinek <jakub@redhat.com> + * sysdeps/s390/s390-32/__longjmp.c (__longjmp): If CHECK_SP is defined, use it. * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise. |