summaryrefslogtreecommitdiff
path: root/patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-07-13 07:38:03 (GMT)
committerGitHub <noreply@github.com>2017-07-13 07:38:03 (GMT)
commit45c5bb0f484cba724be2c6105801dcce9a1a82d9 (patch)
tree8fd1c8eaa2ef203009d72b6ca6348611dcc5ee1c /patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
parent8f8e131d566af1f577d8fb6e62e6f121b7955472 (diff)
parentb32fcf7c1eea890a2bd3f88487f818ba241aabb1 (diff)
Merge pull request #767 from stilor/packages
Packages
Diffstat (limited to 'patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch')
-rw-r--r--patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch b/patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
deleted file mode 100644
index f60e88f..0000000
--- a/patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff --git a/mpz/remove.c b/mpz/remove.c
---- a/mpz/remove.c
-+++ b/mpz/remove.c
-@@ -23,7 +23,7 @@
- unsigned long int
- mpz_remove (mpz_ptr dest, mpz_srcptr src, mpz_srcptr f)
- {
-- mpz_t fpow[40]; /* inexhaustible...until year 2020 or so */
-+ mpz_t fpow[GMP_LIMB_BITS]; /* Really MP_SIZE_T_BITS */
- mpz_t x, rem;
- unsigned long int pwr;
- int p;
-@@ -69,7 +69,7 @@
- mpz_set (dest, x);
- }
-
-- pwr = (1 << p) - 1;
-+ pwr = (1L << p) - 1;
-
- mpz_clear (fpow[p]);
-
-diff --git a/mpz/remove.c b/mpz/remove.c
---- a/mpz/remove.c
-+++ b/mpz/remove.c
-@@ -80,7 +80,7 @@
- mpz_tdiv_qr (x, rem, dest, fpow[p]);
- if (SIZ (rem) == 0)
- {
-- pwr += 1 << p;
-+ pwr += 1L << p;
- mpz_set (dest, x);
- }
- mpz_clear (fpow[p]);