summaryrefslogtreecommitdiff
path: root/gmp-impl.h
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2009-12-20 20:01:25 +0100
committerTorbjorn Granlund <tege@gmplib.org>2009-12-20 20:01:25 +0100
commitf30295989be6c00f9ea186a2457e39ac125c88c5 (patch)
treeb4447e6bfa8b97b1599d6ea31377956180957040 /gmp-impl.h
parent95130b3f96c17f1ef037831256092c75e7e21af8 (diff)
downloadgmp-f30295989be6c00f9ea186a2457e39ac125c88c5.tar.gz
Call mpn_fft_mul instead of mpn_mul_fft_full. Make mpn_fft_mul an alias for mpn_nussbaumer_mul.
Diffstat (limited to 'gmp-impl.h')
-rw-r--r--gmp-impl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gmp-impl.h b/gmp-impl.h
index a8bf000f8..a7fb1b407 100644
--- a/gmp-impl.h
+++ b/gmp-impl.h
@@ -4478,6 +4478,12 @@ mpn_toom63_mul_itch (mp_size_t an, mp_size_t bn)
return 9 * n + 3;
}
+#if 0
+#define mpn_fft_mul mpn_mul_fft_full
+#else
+#define mpn_fft_mul mpn_nussbaumer_mul
+#endif
+
#ifdef __cplusplus
/* A little helper for a null-terminated __gmp_allocate_func string.