2001-04-17 Stephen L. Moshier <moshier@moshier.ne.mediaone.net>

* newlib/libm/math/ef_asin.c (pio2_hi, pio2_lo, pio4_hi):
         Correct the numerical values.
This commit is contained in:
Jeff Johnston 2001-04-17 17:13:00 +00:00
parent e6629a8ad0
commit 273861e3aa
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-04-17 Stephen L. Moshier <moshier@moshier.ne.mediaone.net>
* newlib/libm/math/ef_asin.c (pio2_hi, pio2_lo, pio4_hi):
Correct the numerical values.
2001-04-13 Robert Collins <rbtcollins@hotmail.com> 2001-04-13 Robert Collins <rbtcollins@hotmail.com>
* libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only). * libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only).

View File

@ -22,9 +22,9 @@ static float
#endif #endif
one = 1.0000000000e+00, /* 0x3F800000 */ one = 1.0000000000e+00, /* 0x3F800000 */
huge = 1.000e+30, huge = 1.000e+30,
pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */ pio2_hi = 1.57079637050628662109375f,
pio2_lo = 7.5497894159e-08, /* 0x33a22168 */ pio2_lo = -4.37113900018624283e-8f,
pio4_hi = 7.8539818525e-01, /* 0x3f490fdb */ pio4_hi = 0.785398185253143310546875f,
/* coefficient for R(x^2) */ /* coefficient for R(x^2) */
pS0 = 1.6666667163e-01, /* 0x3e2aaaab */ pS0 = 1.6666667163e-01, /* 0x3e2aaaab */
pS1 = -3.2556581497e-01, /* 0xbea6b090 */ pS1 = -3.2556581497e-01, /* 0xbea6b090 */