Skip to content

Commit

Permalink
Fix bug in test code for GCC 12
Browse files Browse the repository at this point in the history
  • Loading branch information
albinahlback committed May 20, 2022
1 parent da104b6 commit fb8ddbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/t-sdiv_qrnnd.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ int main(void)
{
d = n_randtest_not_zero(state);
nh = n_randtest(state);
} while ((FLINT_ABS(nh) >= FLINT_ABS(d)/2) || (nh == WORD_MIN));
} while ((nh == WORD_MIN) || (FLINT_ABS(nh) >= FLINT_ABS(d)/2));

nl = n_randtest(state);

Expand Down

0 comments on commit fb8ddbc

Please sign in to comment.