On Wed, Apr 06, 2022 at 09:26:56PM -0400, Jason Merrill via Gcc-patches wrote: > gcc/testsuite/ChangeLog: > > * gcc.c-torture/compile/20050113-1.c: Moved to... > * c-c++-common/torture/20050113-1.c: ...here.
The test FAILs on i686-linux if neither MMX isn't enabled, can be also reproduced with make check-gcc check-g++ RUNTESTFLAGS='--target_board=unix/-m32/-mno-mmx/-mno-sse dg-torture.exp=20050113-1.c' on x86_64-linux. Previously the test was in gcc.c-torture/compile/ where -w is added by default. Tested on x86_64-linux, committed to trunk as obvious. 2022-04-08 Jakub Jelinek <ja...@redhat.com> PR c++/105187 * c-c++-common/torture/20050113-1.c: Add dg-additional-options -Wno-psabi. --- gcc/testsuite/c-c++-common/torture/20050113-1.c.jj 2022-04-07 09:09:54.458994772 +0200 +++ gcc/testsuite/c-c++-common/torture/20050113-1.c 2022-04-08 09:49:29.117897860 +0200 @@ -1,4 +1,5 @@ /* PR c/17297 */ +/* { dg-additional-options "-Wno-psabi" } */ typedef float V2SF __attribute__ ((vector_size (8))); Jakub