corrected the overflow checks
authorceriel <none@none>
Thu, 28 Apr 1988 14:21:55 +0000 (14:21 +0000)
committerceriel <none@none>
Thu, 28 Apr 1988 14:21:55 +0000 (14:21 +0000)
mach/proto/fp/compact.c

index d066e13..ee0c390 100644 (file)
@@ -104,7 +104,7 @@ dbl_over:                   trap(EFOVFL);
                    }
                }
                /*      check for overflow                      */
-               if (f->exp >= DBL_MAX)
+               if (f->exp > DBL_MAX)
                    goto dbl_over;
 
                /* STORE EXPONENT:                      */
@@ -177,7 +177,7 @@ sgl_over:                   trap(EFOVFL);
                                }
                        }
                }
-               if (f->exp >= SGL_MAX)
+               if (f->exp > SGL_MAX)
                        goto sgl_over;
 
                /* STORE EXPONENT                       */