X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fj1f.c;h=2d617b67d235f5060fa00f65cbfa1f768b623efd;hp=0323ec7828bb97244ea1d34fa35f23016fe0f960;hb=b935147761d1770bb115f09f8c28ddb4d36e1236;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd diff --git a/src/math/j1f.c b/src/math/j1f.c index 0323ec78..2d617b67 100644 --- a/src/math/j1f.c +++ b/src/math/j1f.c @@ -75,13 +75,13 @@ float j1f(float x) if (ix < 0x32000000) { /* |x| < 2**-27 */ /* raise inexact if x!=0 */ if (huge+x > one) - return (float)0.5*x; + return 0.5f*x; } z = x*x; r = z*(r00+z*(r01+z*(r02+z*r03))); s = one+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); r *= x; - return x*(float)0.5 + r/s; + return 0.5f*x + r/s; } static const float U0[5] = { @@ -338,5 +338,5 @@ static float qonef(float x) z = one/(x*x); r = p[0]+z*(p[1]+z*(p[2]+z*(p[3]+z*(p[4]+z*p[5])))); s = one+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*(q[4]+z*q[5]))))); - return ((float).375 + r/s)/x; + return (.375f + r/s)/x; }