X-Git-Url: http://nsz.repo.hu/git/?p=libm;a=blobdiff_plain;f=src%2Fmath%2F__rem_pio2.c;h=a7d779e0292ed48a2a12a0e49f3930bfd1b35503;hp=4373e22d3f4eeab96d88a5652a9f9d333b44d88a;hb=0498709e07bf9dd0546a61220cd2a27fcd186ce0;hpb=fc04675a09587031d5daebcb877b73976890b71d diff --git a/src/math/__rem_pio2.c b/src/math/__rem_pio2.c index 4373e22..a7d779e 100644 --- a/src/math/__rem_pio2.c +++ b/src/math/__rem_pio2.c @@ -14,7 +14,7 @@ /* __rem_pio2(x,y) * * return the remainder of x rem pi/2 in y[0]+y[1] - * use __rem_pio2_slow() + * use __rem_pio2_large() for large x */ #include "libm.h" @@ -164,7 +164,7 @@ medium: tx[2] = z; nx = 3; while (tx[nx-1] == zero) nx--; /* skip zero term */ - n = __rem_pio2_slow(tx,ty,e0,nx,1); + n = __rem_pio2_large(tx,ty,e0,nx,1); if (hx < 0) { y[0] = -ty[0]; y[1] = -ty[1];