mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-17 13:00:43 +08:00
* 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:
parent
f5eefa6213
commit
68b0e1db30
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user