1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-28 19:39:52 +02:00

factor: remove IF_LINT

* src/factor.c (factor_using_squfof) [USE_SQUFOF]:
Use plain assert (...), not IF_LINT (assert (...)).
This code is currently never compiled or executed,
so this is merely a symbolic cleanup.
This commit is contained in:
Paul Eggert
2022-01-31 08:42:07 -08:00
parent ec8f3ea958
commit dba02d1996
+1 -1
View File
@@ -2076,7 +2076,7 @@ factor_using_squfof (uintmax_t n1, uintmax_t n0, struct factors *factors)
div_smallq (q, rem, S + P, Q);
P1 = S - rem; /* P1 = q*Q - P */
IF_LINT (assert (q > 0 && Q > 0));
assert (q > 0 && Q > 0);
# if STAT_SQUFOF
q_freq[0]++;