diff options
author | Andreas Jaeger <aj@suse.de> | 2012-03-15 17:34:24 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2012-03-15 17:34:24 +0100 |
commit | ee010c9e952bc68799b4584ec0ee27230109f890 (patch) | |
tree | d6c94d2c0e67311b62595199e725f62bc1ec98dc /math | |
parent | 8c0247db324000ab1281b3091ab4cdfd167a1c52 (diff) | |
download | glibc-ee010c9e952bc68799b4584ec0ee27230109f890.tar.gz glibc-ee010c9e952bc68799b4584ec0ee27230109f890.tar.xz glibc-ee010c9e952bc68799b4584ec0ee27230109f890.zip |
* sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
ieee754/flt-32 implementation for tan. * math/libm-test.inc (tan_test): Add tests for large input. * sysdeps/i386/fpu/libm-test-ulps: Update.
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.inc | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 760ec6b7ef..ddc8ea53d2 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -2113,7 +2113,7 @@ cos_test (void) TEST_f_f (cos, 0.75L, 0.731688868873820886311838753000084544L); #ifndef TEST_LDOUBLE - /* Enable for long double once x86 and x86-64 implementation is fixed. */ + /* Enable for long double once x86 and x86-64 implementations are fixed. */ TEST_f_f (cos, 0x1p65, 0.998886220660580136106421721793L); TEST_f_f (cos, -0x1p65, 0.998886220660580136106421721793L); #endif @@ -6396,7 +6396,7 @@ sin_test (void) TEST_f_f (sin, 0.75L, 0.681638760023334166733241952779893935L); #ifndef TEST_LDOUBLE - /* Enable for long double once x86 and x86-64 implementation is fixed. */ + /* Enable for long double once x86 and x86-64 implementations are fixed. */ TEST_f_f (sin, 0x1p65, -0.0471838762123546738051061498057L); TEST_f_f (sin, -0x1p65, 0.0471838762123546738051061498057L); #endif @@ -6576,7 +6576,7 @@ sincos_test (void) TEST_extra (sincos, 0.75L, 0.681638760023334166733241952779893935L, 0.731688868873820886311838753000084544L); #ifndef TEST_LDOUBLE - /* Enable for long double once x86 and x86-64 implementation is fixed. */ + /* Enable for long double once x86 and x86-64 implementations are fixed. */ TEST_extra (sincos, 0x1p65, -0.0471838762123546738051061498057L, 0.998886220660580136106421721793L); TEST_extra (sincos, -0x1p65, 0.0471838762123546738051061498057L, 0.998886220660580136106421721793L); #endif @@ -6784,6 +6784,13 @@ tan_test (void) TEST_f_f (tan, M_PI_4l, 1); TEST_f_f (tan, 0.75L, 0.931596459944072461165202756573936428L); +#ifdef TEST_FLOAT + /* Enable for double and long double once x86 and x86-64 + implementations are fixed. */ + TEST_f_f (tan, 0x1p65, -0.04723648723590479467984142193L); + TEST_f_f (tan, -0x1p65, 0.04723648723590479467984142193L); +#endif + END (tan); } |