remove useless assignment of cnt

This commit is contained in:
Francois Perrad 2018-12-27 09:02:31 +01:00
parent e519d5ef41
commit 4f902d9f10
1 changed files with 1 additions and 1 deletions

View File

@ -933,7 +933,7 @@ printf("compare no compare!\n"); return EXIT_FAILURE;
#else
div2_n = mul2_n = inv_n = expt_n = lcm_n = gcd_n = add_n =
sub_n = mul_n = div_n = sqr_n = mul2d_n = div2d_n = cnt = add_d_n = sub_d_n = 0;
sub_n = mul_n = div_n = sqr_n = mul2d_n = div2d_n = add_d_n = sub_d_n = 0;
/* force KARA and TOOM to enable despite cutoffs */
KARATSUBA_SQR_CUTOFF = KARATSUBA_MUL_CUTOFF = 8;