X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2Fremquo.c;h=e92984edf2ec018bdc801738ea9e578047d4ff7c;hp=79c9a55e02afa85b55660233ab93a41147b09c6c;hb=8c6fc860a97f79146bf5c092d5cfb90fa6d9355a;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd diff --git a/src/math/remquo.c b/src/math/remquo.c index 79c9a55e..e92984ed 100644 --- a/src/math/remquo.c +++ b/src/math/remquo.c @@ -35,7 +35,6 @@ double remquo(double x, double y, int *quo) hy &= 0x7fffffff; /* |y| */ /* purge off exception values */ - // FIXME: signed shift if ((hy|ly) == 0 || hx >= 0x7ff00000 || /* y = 0, or x not finite */ (hy|((ly|-ly)>>31)) > 0x7ff00000) /* or y is NaN */ return (x*y)/(x*y);