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>2016-11-10 01:35:27 (GMT)
committerGitHub <noreply@github.com>2016-11-10 01:35:27 (GMT)
commita76c549823fd0063de999786b6dc583847db091e (patch)
tree04a51e165125497bbcb1b1d8865958c4cd14de5b /patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
parent23e9a03a3f4a5eaded6cadbe4d808997879450d1 (diff)
parentdc280e477d6af7702e2481c17af20a7db83814d9 (diff)
Merge pull request #452 from KirillSmirnov/janitorial
Janitorial: update patches
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, 33 insertions, 0 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
new file mode 100644
index 0000000..f60e88f
--- /dev/null
+++ b/patches/gmp/4.3.0/100-multiplicity-that-does-not-fit-an-int.patch
@@ -0,0 +1,33 @@
+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]);