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; }