re PR c++/92745 (Initializing array with vec4 results in compile error)
authorJakub Jelinek <jakub@redhat.com>
Sun, 29 Dec 2019 23:47:55 +0000 (00:47 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sun, 29 Dec 2019 23:47:55 +0000 (00:47 +0100)
PR c++/92745
* g++.dg/cpp0x/initlist118.C: Add -Wno-psabi -w to dg-options.

From-SVN: r279758

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/initlist118.C

index 5db3016..dcc0ec9 100644 (file)
@@ -1,3 +1,8 @@
+2019-12-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/92745
+       * g++.dg/cpp0x/initlist118.C: Add -Wno-psabi -w to dg-options.
+
 2019-12-29  Marek Polacek  <polacek@redhat.com>
 
        PR c++/88337 - Implement P1327R1: Allow dynamic_cast in constexpr.
index 2e1b969..a226766 100644 (file)
@@ -1,5 +1,6 @@
 // PR c++/92745 - bogus error when initializing array of vectors.
 // { dg-do compile { target c++11 } }
+// { dg-options "-Wno-psabi -w" }
 
 template <typename a, int b> struct c {
   typedef a d[b];