Do not shrink bignum registers.
authorJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Fri, 29 Jan 2010 13:10:49 +0000 (14:10 +0100)
committerJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Fri, 29 Jan 2010 13:10:49 +0000 (14:10 +0100)
src/c/big.d

index 19187ed..166300f 100644 (file)
@@ -25,6 +25,7 @@
 void
 _ecl_big_register_free(cl_object x)
 {
+        return;
         /* We only need to free the integer when it gets too large */
         if (x->big.big_dim > 3 * ECL_BIG_REGISTER_SIZE) {
                 mpz_realloc2(x->big.big_num, ECL_BIG_REGISTER_SIZE * GMP_LIMB_BITS);