From: David Edelsohn Date: Wed, 2 Mar 2022 13:59:01 +0000 (-0500) Subject: testsuite: Add -Wno-psabi to pr104505.c X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38c1731193fe12d951f3010880406505507d90c1;p=test_jj.git testsuite: Add -Wno-psabi to pr104505.c The testcase references a vector type that elicits a psabi warning. This patch adds the option to suppress the warning. * c-c++-common/pr104505.c: Add -Wno-psabi. --- diff --git a/gcc/testsuite/c-c++-common/pr104505.c b/gcc/testsuite/c-c++-common/pr104505.c index 7fa3d84..2fc3bb9 100644 --- a/gcc/testsuite/c-c++-common/pr104505.c +++ b/gcc/testsuite/c-c++-common/pr104505.c @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-additional-options "-Wno-psabi" } */ typedef char __attribute__((__vector_size__ (8))) U; typedef short __attribute__((__vector_size__ (16))) V;