MIPS: math-emu: Replace DP_MBITS with DP_FBITS and SP_MBITS with SP_FBITS.
[deliverable/linux.git] / arch / mips / math-emu / dp_fint.c
index 4b5ee799b4a44499506c24855a3902edd3d55493..196a010ff09d7fc2b17b0fe1ff9bf917a5207636 100644 (file)
@@ -52,8 +52,8 @@ union ieee754dp ieee754dp_fint(int x)
        }
 
        /* normalize - result can never be inexact or overflow */
-       xe = DP_MBITS;
-       while ((xm >> DP_MBITS) == 0) {
+       xe = DP_FBITS;
+       while ((xm >> DP_FBITS) == 0) {
                xm <<= 1;
                xe--;
        }
This page took 0.038046 seconds and 5 git commands to generate.