https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100305
--- Comment #11 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:62a44a9797edce11b1f7051ea0016ee975d41233 commit r12-283-g62a44a9797edce11b1f7051ea0016ee975d41233 Author: Jakub Jelinek <ja...@redhat.com> Date: Thu Apr 29 11:42:08 2021 +0200 testsuite: Remove dg-options from pr100305.c [PR100305] The test FAILs on i?86-linux (due to -Wpsabi warnings). But, on closer inspection it seems there is another problem, the dg-options in the testcase means that the test is compiled with -O0 -O, -O1 -O, -O2 -O, -O3 -O, -Os -O etc. options, so effectively is tested multiple times with the same options. Fixed by dropping the dg-options line, then we have -w by default and iterate over all the optimization levels (including the -O). 2021-04-29 Jakub Jelinek <ja...@redhat.com> PR target/100305 * gcc.c-torture/compile/pr100305.c: Remove dg-options. Add PR line.