math: minor scalbn*.c simplification
[musl] / src / math / scalbnf.c
index e5c76db..c0eeaf8 100644 (file)
@@ -2,8 +2,6 @@
 
 float scalbnf(float x, int n)
 {
-       /* make sure result is stored as double on overflow or underflow */
-       volatile float z;
        float scale;
 
        if (n > 127) {
@@ -12,10 +10,8 @@ float scalbnf(float x, int n)
                if (n > 127) {
                        x *= 0x1p127f;
                        n -= 127;
-                       if (n > 127) {
-                               z = x * 0x1p127f;
-                               return z;
-                       }
+                       if (n > 127)
+                               n = 127;
                }
        } else if (n < -126) {
                x *= 0x1p-126f;
@@ -23,13 +19,11 @@ float scalbnf(float x, int n)
                if (n < -126) {
                        x *= 0x1p-126f;
                        n += 126;
-                       if (n < -126) {
-                               z = x * 0x1p-126f;
-                               return z;
-                       }
+                       if (n < -126)
+                               n = -126;
                }
        }
        SET_FLOAT_WORD(scale, (uint32_t)(0x7f+n)<<23);
-       z = x * scale;
-       return z;
+       STRICT_ASSIGN(float, x, x * scale);
+       return x;
 }