summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-07-30 23:40:24 +0200
committerKevin Ryde <user42@zip.com.au>2000-07-30 23:40:24 +0200
commita9e68c881f48b4a8f29842d52f946e643e355ce8 (patch)
tree23f1b5bd3f8e478b4d074cde89a5691929fa1008
parentdb47b0a5999d89451a4f1dd9ed081b7f4dd10e60 (diff)
downloadgmp-a9e68c881f48b4a8f29842d52f946e643e355ce8.tar.gz
Further correction to initial checkin:
Remove a harmless but unnecessary duplicate initialization of Ap when recursing.
-rw-r--r--mpn/generic/mul_fft.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/mpn/generic/mul_fft.c b/mpn/generic/mul_fft.c
index 7fa19ca60..00fd6d72d 100644
--- a/mpn/generic/mul_fft.c
+++ b/mpn/generic/mul_fft.c
@@ -369,7 +369,6 @@ mpn_fft_mul_modF_K(ap, bp, n, K)
Mp2 = Nprime2/K2;
Ap = TMP_ALLOC_MP_PTRS (K2);
- Ap = TMP_ALLOC_MP_PTRS (K2);
Bp = TMP_ALLOC_MP_PTRS (K2);
A = TMP_ALLOC_LIMBS (2*K2*(nprime2+1));
T = TMP_ALLOC_LIMBS (nprime2+1);