From 24de5560e99f17df1b2377998a9b43b863dfebaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Fri, 13 May 2022 20:49:04 +0200 Subject: Delete spurious assignment in mpn_jacobi_update. --- gmp-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmp-impl.h b/gmp-impl.h index 0c6109b7c..2615af764 100644 --- a/gmp-impl.h +++ b/gmp-impl.h @@ -4252,7 +4252,7 @@ mpn_jacobi_update (unsigned bits, unsigned denominator, unsigned q) One could maintain the state preshifted 3 bits, to save a shift here, but at least on x86, that's no real saving. */ - return bits = jacobi_table[(bits << 3) + (denominator << 2) + q]; + return jacobi_table[(bits << 3) + (denominator << 2) + q]; } /* Matrix multiplication */ -- cgit v1.2.1