about summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-05-29 15:40:18 +0000
committerAndreas Jaeger <aj@suse.de>2001-05-29 15:40:18 +0000
commitc9bfaa1bb56dee38fc5793491a95f1fe5ec7bdcb (patch)
treeb47bd3804136c0e9af3588aca8f9ddaa0dd8855f /math
parentde64faec8f644eea43406c7f65e083c6d0d02ad9 (diff)
downloadglibc-c9bfaa1bb56dee38fc5793491a95f1fe5ec7bdcb.tar.gz
glibc-c9bfaa1bb56dee38fc5793491a95f1fe5ec7bdcb.tar.xz
glibc-c9bfaa1bb56dee38fc5793491a95f1fe5ec7bdcb.zip
Update.
2001-05-29  Andreas Jaeger  <aj@suse.de>

	* sysdeps/ieee754/ldbl-128/e_acosl.c: New file, contributed by
	Stephen L Moshier <moshier@mediaone.net>.

	* math/libm-test.inc (sinh_test): Add new test case.

	* sysdeps/ieee754/ldbl_96/e_sinhl.c (__ieee754_sinhl): sinhl(x) =
	x when x < 2^-32.
	Patch by Stephen L Moshier <moshier@mediaone.net>.
Diffstat (limited to 'math')
-rw-r--r--math/libm-test.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc
index c1c5edbc58..c9ba1f9407 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -3878,7 +3878,8 @@ sinh_test (void)
   TEST_f_f (sinh, nan_value, nan_value);
 
   TEST_f_f (sinh, 0.7L, 0.75858370183953350346L);
-
+  TEST_f_f (sinh, 0x8p-32L, 1.86264514923095703232705808926175479e-9L);
+  
   END (sinh);
 }