re PR c/87286 (ICE on vectors of enums)
authorJakub Jelinek <jakub@redhat.com>
Wed, 10 Oct 2018 09:03:40 +0000 (11:03 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 10 Oct 2018 09:03:40 +0000 (11:03 +0200)
PR c/87286
* gcc.dg/pr87286.c: Add -Wno-psabi to dg-options.

From-SVN: r265006

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr87286.c

index 978ecdaa5ade450c98630f7630982d55a9a3182b..5a460a015dac81ef44beeabc0839300ff2ad7a7a 100644 (file)
@@ -1,3 +1,8 @@
+2018-10-10  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/87286
+       * gcc.dg/pr87286.c: Add -Wno-psabi to dg-options.
+
 2018-10-09  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/84423
index d92d29ccee7719c25d296e71403a2eba219e7790..155ace8021c95fa266792c465b4ff696fa170c1e 100644 (file)
@@ -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; }