]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(_tens_in_limb) [BITS_PER_MP_LIMB > 32]: Make all numbers unsigned to
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Mar 1997 03:59:57 +0000 (03:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Mar 1997 03:59:57 +0000 (03:59 +0000)
make buggy gccs happy.

stdlib/strtod.c

index 17826b9d1a7711d8246cce805276aaff51f7839a..7907dedde33c073b78c0dd0630aa414d4bfe7e2e 100644 (file)
@@ -106,10 +106,10 @@ static const mp_limb_t _tens_in_limb[MAX_DIG_PER_LIMB + 1] =
      1000000,             10000000,             100000000,
      1000000000
 #if BITS_PER_MP_LIMB > 32
-              ,          10000000000,          100000000000,
-     1000000000000,       10000000000000,       100000000000000,
-     1000000000000000,    10000000000000000,    100000000000000000,
-     1000000000000000000, 10000000000000000000U
+              ,           10000000000U,          100000000000U,
+     1000000000000U,       10000000000000U,       100000000000000U,
+     1000000000000000U,    10000000000000000U,    100000000000000000U,
+     1000000000000000000U, 10000000000000000000U
 #endif
 #if BITS_PER_MP_LIMB > 64
   #error "Need to expand tens_in_limb table to" MAX_DIG_PER_LIMB