diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-29 14:08:56 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-29 14:08:56 -0400 |
commit | cb95113e30aead7b97cd806278c0ff055ba721b6 (patch) | |
tree | fde7e269b8ace65f635aade43c31b355c4dd52aa /math | |
parent | 09e18697732f90357db0b3241e563a4db8ebfb03 (diff) | |
download | glibc-cb95113e30aead7b97cd806278c0ff055ba721b6.tar.gz glibc-cb95113e30aead7b97cd806278c0ff055ba721b6.tar.xz glibc-cb95113e30aead7b97cd806278c0ff055ba721b6.zip |
Fix accuracy problem in generic sin
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 96da7cde6b..a451174f0e 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -5642,6 +5642,7 @@ sin_test (void) #ifdef TEST_DOUBLE TEST_f_f (sin, 0.80190127184058835, 0.71867942238767868); + TEST_f_f (sin, 2.522464e-1, 2.4957989804940911e-1); #endif END (sin); |