summaryrefslogtreecommitdiff
path: root/tune
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-12-06 22:55:30 +0100
committerKevin Ryde <user42@zip.com.au>2003-12-06 22:55:30 +0100
commit994ccf304248821618c748b2b5e343fd5ab199f2 (patch)
tree34be56109056205318711861e44ac6c490583cfc /tune
parent9d4fb7c3f3ea5bd62457301e4cee2166419b1cfe (diff)
downloadgmp-994ccf304248821618c748b2b5e343fd5ab199f2.tar.gz
* tune/tuneup.c (mul_toom3_threshold): Use MUL_TOOM3_THRESHOLD_LIMIT,
for the benefit of ASSERT in mpn_mul_n.
Diffstat (limited to 'tune')
-rw-r--r--tune/tuneup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tune/tuneup.c b/tune/tuneup.c
index 04b52bf8d..6c8eff510 100644
--- a/tune/tuneup.c
+++ b/tune/tuneup.c
@@ -149,7 +149,7 @@ int allocdat = 0;
#endif
mp_size_t mul_karatsuba_threshold = MP_SIZE_T_MAX;
-mp_size_t mul_toom3_threshold = MP_SIZE_T_MAX;
+mp_size_t mul_toom3_threshold = MUL_TOOM3_THRESHOLD_LIMIT;
mp_size_t mul_fft_threshold = MP_SIZE_T_MAX;
mp_size_t mul_fft_modf_threshold = MP_SIZE_T_MAX;
mp_size_t sqr_basecase_threshold = MP_SIZE_T_MAX;