On Tue, Mar 08, 2016 at 11:27:28PM +0100, Andreas Schwab wrote: > On powerpc -m32: > > FAIL: gcc.dg/simd-7.c (test for excess errors) > Excess errors: > /daten/gcc/gcc-20160307/gcc/testsuite/gcc.dg/simd-7.c:8:1: warning: GCC > vector returned by reference: non-standard ABI extension with no > compatibility guarantee > /daten/gcc/gcc-20160307/gcc/testsuite/gcc.dg/simd-7.c:7:1: warning: GCC > vector passed by reference: non-standard ABI extension with no compatibility > guarantee
Fixed thusly, committed as obvious: 2016-03-09 Jakub Jelinek <ja...@redhat.com> PR middle-end/67278 * gcc.dg/simd-7.c: Add -w -Wno-psabi to dg-options. --- gcc/testsuite/gcc.dg/simd-7.c (revision 234078) +++ gcc/testsuite/gcc.dg/simd-7.c (working copy) @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-options "-w -Wno-psabi" } */ #if __SIZEOF_LONG_DOUBLE__ == 16 || __SIZEOF_LONG_DOUBLE__ == 8 typedef long double a __attribute__((vector_size (16))); Jakub