diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2017-12-05 18:09:22 +0000 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2017-12-05 18:09:22 +0000 |
commit | 00d54af7c86cdcabc18c00619c229f49f4978610 (patch) | |
tree | 6bc09f21632f62fc82f9f5b057e4fa9493adf3ca /ChangeLog | |
parent | 1f70eae4cf0ca826ddbc2b61720e8aeae1e13de4 (diff) | |
download | glibc-00d54af7c86cdcabc18c00619c229f49f4978610.tar.gz glibc-00d54af7c86cdcabc18c00619c229f49f4978610.tar.xz glibc-00d54af7c86cdcabc18c00619c229f49f4978610.zip |
[PATCH] fix sinf(NAN)
sinf(NAN) should not signal invalid fp exception so use isless instead of < where NAN is compared. this makes the sinf tests pass on aarch64. * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Use isless.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index bcc49a1dc5..15da4e7937 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-12-05 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Use isless. + 2017-12-05 Joseph Myers <joseph@codesourcery.com> * stdlib/strfromd.c: Include <bits/floatn.h>. |