* sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Use sincos

instead of separate sin and cos. 
(__ieee754_j1l): Likewise.
This commit is contained in:
Andreas Jaeger 2001-04-07 18:31:54 +00:00
parent f5eefa6213
commit 68b0e1db30
1 changed files with 2 additions and 4 deletions

View File

@ -119,8 +119,7 @@ __ieee754_j1l (x)
y = fabsl (x);
if (ix >= 0x4000)
{ /* |x| >= 2.0 */
s = __sinl (y);
c = __cosl (y);
__sincosl (y, &s, &c);
ss = -s - c;
cc = s - c;
if (ix < 0x7ffe)
@ -214,8 +213,7 @@ __ieee754_y1l (x)
return -one / zero;
if (ix >= 0x4000)
{ /* |x| >= 2.0 */
s = __sinl (x);
c = __cosl (x);
__sincosl (x, &s, &c);
ss = -s - c;
cc = s - c;
if (ix < 0x7fe00000)