From: Segher Boessenkool Date: Wed, 6 Apr 2022 15:22:24 +0000 (+0000) Subject: rs6000/testsuite: Skip pr105140.c X-Git-Tag: basepoints/gcc-13~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c65d15d40738f3691ff1a39907a4b93e9fe5c5ae;p=thirdparty%2Fgcc.git rs6000/testsuite: Skip pr105140.c This test fails with error "AltiVec argument passed to unprototyped function", but the code (in rs6000.c:invalid_arg_for_unprototyped_fn, from 2005) actually tests for any vector type argument. It also does not fail on Darwin, not reflected here though. 2022-04-06 Segher Boessenkool gcc/testsuite/ PR target/105147 * gcc.dg/pr105140.c: Skip for powerpc*-*-*. --- diff --git a/gcc/testsuite/gcc.dg/pr105140.c b/gcc/testsuite/gcc.dg/pr105140.c index 14bff2f7f9c5..da34e7ad6566 100644 --- a/gcc/testsuite/gcc.dg/pr105140.c +++ b/gcc/testsuite/gcc.dg/pr105140.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-Os -w -Wno-psabi" } */ +/* { dg-skip-if "PR105147" { powerpc*-*-* } } */ typedef char __attribute__((__vector_size__ (16 * sizeof (char)))) U; typedef int __attribute__((__vector_size__ (16 * sizeof (int)))) V;