patches/gmp/4.3.1/110-unbounded-alloc.patch
author Remy Bohmer <linux@bohmer.net>
Thu May 27 23:18:19 2010 +0200 (2010-05-27)
changeset 2060 51e4597b07fc
permissions -rw-r--r--
scripts: add option to strip all toolchain executables

To reduce filesizes of the toolchain and even improve build times
of projects to be build with this toolchain it is usefull to strip
the delivered toolchain executables. Since it is not likely that we
will debug the toolchain executables itself we do not need the
debug information inside the executables itself.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
yann@1440
     1
diff --git a/mpn/generic/toom44_mul.c b/mpn/generic/toom44_mul.c
yann@1440
     2
--- a/mpn/generic/toom44_mul.c
yann@1440
     3
+++ b/mpn/generic/toom44_mul.c
yann@1440
     4
@@ -116,17 +116,16 @@
yann@1440
     5
 
yann@1440
     6
   TMP_MARK;
yann@1440
     7
 
yann@1440
     8
-  as1  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
     9
-  asm1 = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    10
-  as2  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    11
-  ash  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    12
-  asmh = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    13
-
yann@1440
    14
-  bs1  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    15
-  bsm1 = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    16
-  bs2  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    17
-  bsh  = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    18
-  bsmh = TMP_SALLOC_LIMBS (n + 1);
yann@1440
    19
+  as1  = TMP_ALLOC_LIMBS (10 * n + 10);
yann@1440
    20
+  asm1 = as1  + n + 1;
yann@1440
    21
+  as2  = asm1 + n + 1;
yann@1440
    22
+  ash  = as2  + n + 1;
yann@1440
    23
+  asmh = ash  + n + 1;
yann@1440
    24
+  bs1  = asmh + n + 1;
yann@1440
    25
+  bsm1 = bs1  + n + 1;
yann@1440
    26
+  bs2  = bsm1 + n + 1;
yann@1440
    27
+  bsh  = bs2  + n + 1;
yann@1440
    28
+  bsmh = bsh  + n + 1;
yann@1440
    29
 
yann@1440
    30
   gp = pp;
yann@1440
    31
   hp = pp + n + 1;