summaryrefslogtreecommitdiff
path: root/packages/gmp/4.3.1/110-unbounded-alloc.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-08-18 23:17:53 (GMT)
committerAlexey Neyman <stilor@att.net>2017-08-18 23:17:53 (GMT)
commit321990916bd5180b11c598279680794ce9b044e3 (patch)
tree0b97ada2156ef1e8fc5d83c0dadbd2d7f7a87cff /packages/gmp/4.3.1/110-unbounded-alloc.patch
parent5d6ac1b8b1160aad4b9f09b31b7bad4ea14519f3 (diff)
Trim old versions
Policy: - Only latest patchlevel for each branch release Exception: CLooG - ISL has dependencies on specific CLooG releases within a single branch - Where there are no patchlevel releases (uClibc, musl) - just retain two most recent releases Also, missed automake update: 1.14 -> 1.14.1 Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gmp/4.3.1/110-unbounded-alloc.patch')
-rw-r--r--packages/gmp/4.3.1/110-unbounded-alloc.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/packages/gmp/4.3.1/110-unbounded-alloc.patch b/packages/gmp/4.3.1/110-unbounded-alloc.patch
deleted file mode 100644
index 78e0588..0000000
--- a/packages/gmp/4.3.1/110-unbounded-alloc.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/mpn/generic/toom44_mul.c b/mpn/generic/toom44_mul.c
---- a/mpn/generic/toom44_mul.c
-+++ b/mpn/generic/toom44_mul.c
-@@ -116,17 +116,16 @@
-
- TMP_MARK;
-
-- as1 = TMP_SALLOC_LIMBS (n + 1);
-- asm1 = TMP_SALLOC_LIMBS (n + 1);
-- as2 = TMP_SALLOC_LIMBS (n + 1);
-- ash = TMP_SALLOC_LIMBS (n + 1);
-- asmh = TMP_SALLOC_LIMBS (n + 1);
--
-- bs1 = TMP_SALLOC_LIMBS (n + 1);
-- bsm1 = TMP_SALLOC_LIMBS (n + 1);
-- bs2 = TMP_SALLOC_LIMBS (n + 1);
-- bsh = TMP_SALLOC_LIMBS (n + 1);
-- bsmh = TMP_SALLOC_LIMBS (n + 1);
-+ as1 = TMP_ALLOC_LIMBS (10 * n + 10);
-+ asm1 = as1 + n + 1;
-+ as2 = asm1 + n + 1;
-+ ash = as2 + n + 1;
-+ asmh = ash + n + 1;
-+ bs1 = asmh + n + 1;
-+ bsm1 = bs1 + n + 1;
-+ bs2 = bsm1 + n + 1;
-+ bsh = bs2 + n + 1;
-+ bsmh = bsh + n + 1;
-
- gp = pp;
- hp = pp + n + 1;