summaryrefslogtreecommitdiff
path: root/mpn/generic/toom32_mul.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpn/generic/toom32_mul.c')
-rw-r--r--mpn/generic/toom32_mul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpn/generic/toom32_mul.c b/mpn/generic/toom32_mul.c
index 0c61abfb2..f03ba568f 100644
--- a/mpn/generic/toom32_mul.c
+++ b/mpn/generic/toom32_mul.c
@@ -104,7 +104,7 @@ mpn_toom32_mul (mp_ptr pp,
/* FIXME: Keep v1[2*n] and vm1[2*n] in scalar variables? */
- /* Compute ap1 = a0 + a1 + a3, am1 = a0 - a1 + a3 */
+ /* Compute ap1 = a0 + a1 + a2, am1 = a0 - a1 + a2 */
ap1_hi = mpn_add (ap1, a0, n, a2, s);
#if HAVE_NATIVE_mpn_add_n_sub_n
if (ap1_hi == 0 && mpn_cmp (ap1, a1, n) < 0)