Hi! This new test fails on i686-linux, due to -Wpsabi warnings. Fixed the usual way, tested on x86_64-linux -m32,-m64,-m32/-mno-sse, committed to trunk as obvious.
2020-12-09 Jakub Jelinek <ja...@redhat.com> PR tree-optimization/98191 * gcc.dg/torture/pr98191.c: Add dg-additional-options with -w -Wno-psabi. diff --git a/gcc/testsuite/gcc.dg/torture/pr98191.c b/gcc/testsuite/gcc.dg/torture/pr98191.c index 93cd27c21e1..7c4a6d19613 100644 --- a/gcc/testsuite/gcc.dg/torture/pr98191.c +++ b/gcc/testsuite/gcc.dg/torture/pr98191.c @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-additional-options "-w -Wno-psabi" } */ typedef double v2df __attribute__((vector_size(2*sizeof(double)))); Jakub