sinh, cosh comment fixes
[libm] / src / math / sinhf.c
index a66ed1a..15c5013 100644 (file)
@@ -50,6 +50,7 @@ float sinhf(float x)
 
        /* |x| in [logf(maxfloat), overflowthresold] */
        if (ix <= 0x42b2d4fc)
+               // FIXME: 0.5f * 2.0f * huge == huge ?
                return h*2.0F*__ldexp_expf(fabsf(x), -1);
 
        /* |x| > overflowthresold, sinh(x) overflow */