Hi! I've noticed pr70290.C testcase fails on powerpc*, for the usual reasons, extra ABI warnings. -w -Wno-psabi is the standard way to deal with this. Committed as obvious.
2016-03-24 Jakub Jelinek <ja...@redhat.com> PR target/70290 * g++.dg/ext/pr70290.C: Add -Wno-psabi -w to dg-options. Formatting. --- gcc/testsuite/g++.dg/ext/pr70290.C.jj 2016-03-23 10:41:12.000000000 +0100 +++ gcc/testsuite/g++.dg/ext/pr70290.C 2016-03-24 12:24:56.111834140 +0100 @@ -1,16 +1,18 @@ +/* PR target/70290 */ /* { dg-do compile } */ +/* { dg-options "-Wno-psabi -w" } */ /* { dg-additional-options "-mavx512vl" { target { i?86-*-* x86_64-*-* } } } */ typedef int vec __attribute__((vector_size(32))); vec -test1 (vec x,vec y) +test1 (vec x, vec y) { return (x < y) ? 1 : 0; } vec -test2 (vec x,vec y) +test2 (vec x, vec y) { vec zero = { }; vec one = zero + 1; Jakub