]> git.eshelyaron.com Git - emacs.git/commitdiff
Tiny simplification of frac_to_double
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 19 Mar 2020 06:58:46 +0000 (23:58 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 19 Mar 2020 07:11:16 +0000 (00:11 -0700)
* src/timefns.c (frac_to_double): Remove unnecessary runtime check,
since the denominator is always positive.

src/timefns.c

index a9595b5d2391d68567edd2349b78b5d44c95940b..7bcc37d7c1ebc8f76bd0bef5e846687f7037cc08 100644 (file)
@@ -593,7 +593,7 @@ timespec_to_lisp (struct timespec t)
 }
 
 /* Return NUMERATOR / DENOMINATOR, rounded to the nearest double.
-   Arguments must be Lisp integers, and DENOMINATOR must be nonzero.  */
+   Arguments must be Lisp integers, and DENOMINATOR must be positive.  */
 static double
 frac_to_double (Lisp_Object numerator, Lisp_Object denominator)
 {
@@ -601,7 +601,6 @@ frac_to_double (Lisp_Object numerator, Lisp_Object denominator)
   if (FASTER_TIMEFNS
       && integer_to_intmax (numerator, &intmax_numerator)
       && integer_to_intmax (denominator, &intmax_denominator)
-      && ! INT_DIVIDE_OVERFLOW (intmax_numerator, intmax_denominator)
       && intmax_numerator % intmax_denominator == 0)
     return intmax_numerator / intmax_denominator;