]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Sync mktime.c from Gnulib
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 5 Aug 2020 06:15:31 +0000 (23:15 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 5 Aug 2020 06:15:31 +0000 (23:15 -0700)
* time/mktime.c: Sync from Gnulib.
This micro-optimizes three division-related computations.

time/mktime.c

index 63c82fc6a96848b1f1e34164e7ce696035635fc6..c8735164f695a7f96d0ea781677597e3d520678f 100644 (file)
@@ -141,7 +141,7 @@ shr (long_int a, int b)
   long_int one = 1;
   return (-one >> 1 == -1
          ? a >> b
-         : a / (one << b) - (a % (one << b) < 0));
+         : (a + (a < 0)) / (one << b) - (a < 0));
 }
 
 /* Bounds for the intersection of __time64_t and long_int.  */
@@ -211,8 +211,8 @@ ydhms_diff (long_int year1, long_int yday1, int hour1, int min1, int sec1,
      Take care to avoid integer overflow here.  */
   int a4 = shr (year1, 2) + shr (TM_YEAR_BASE, 2) - ! (year1 & 3);
   int b4 = shr (year0, 2) + shr (TM_YEAR_BASE, 2) - ! (year0 & 3);
-  int a100 = a4 / 25 - (a4 % 25 < 0);
-  int b100 = b4 / 25 - (b4 % 25 < 0);
+  int a100 = (a4 + (a4 < 0)) / 25 - (a4 < 0);
+  int b100 = (b4 + (b4 < 0)) / 25 - (b4 < 0);
   int a400 = shr (a100, 2);
   int b400 = shr (b100, 2);
   int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);