From: jakub Date: Wed, 10 Oct 2018 09:03:40 +0000 (+0000) Subject: PR c/87286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=703d46f658793f0c38136e0ddba473c328aef29d;p=thirdparty%2Fgcc.git PR c/87286 * gcc.dg/pr87286.c: Add -Wno-psabi to dg-options. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@265006 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 978ecdaa5ade..5a460a015dac 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-10-10 Jakub Jelinek + + PR c/87286 + * gcc.dg/pr87286.c: Add -Wno-psabi to dg-options. + 2018-10-09 Paolo Carlini PR c++/84423 diff --git a/gcc/testsuite/gcc.dg/pr87286.c b/gcc/testsuite/gcc.dg/pr87286.c index d92d29ccee77..155ace8021c9 100644 --- a/gcc/testsuite/gcc.dg/pr87286.c +++ b/gcc/testsuite/gcc.dg/pr87286.c @@ -1,3 +1,4 @@ +/* { dg-options "-Wno-psabi" } */ enum foo { F }; typedef enum foo vec_foo __attribute__((vector_size (16))); vec_foo add (vec_foo x, vec_foo y) { return x + y; }