constexpr-53094-2.C: Ignore non-standard ABI message.
authorDavid Edelsohn <dje.gcc@gmail.com>
Wed, 30 Jan 2013 16:33:14 +0000 (16:33 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Wed, 30 Jan 2013 16:33:14 +0000 (11:33 -0500)
        * g++.dg/cpp0x/constexpr-53094-2.C: Ignore non-standard ABI
        message.
        * g++.dg/cpp0x/constexpr-53094-3.C: Same.
        * g++.dg/cpp0x/constexpr-55573.C: Same

From-SVN: r195578

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C
gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C
gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C

index e79aebe..1c6a0df 100644 (file)
@@ -1,3 +1,10 @@
+2013-01-30  David Edelsohn  <dje.gcc@gmail.com>
+
+       * g++.dg/cpp0x/constexpr-53094-2.C: Ignore non-standard ABI
+       message.
+       * g++.dg/cpp0x/constexpr-53094-3.C: Same.
+       * g++.dg/cpp0x/constexpr-55573.C: Same
+       
 2013-01-30  Georg-Johann Lay  <avr@gjlay.de>
 
        PR tree-optimization/56064
index af4b8d9..3f66c4e 100644 (file)
@@ -1,5 +1,7 @@
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
+// Ignore warning on some powerpc-ibm-aix configurations.
+// { dg-prune-output "non-standard ABI extension" }
 
 typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
 constexpr V4 build (float x, float y, float z) { return (V4){ x, y, z, 0 };}
index bd17ac7..2c2d2b4 100644 (file)
@@ -1,5 +1,7 @@
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
+// Ignore warning on some powerpc-ibm-aix configurations.
+// { dg-prune-output "non-standard ABI extension" }
 
 typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
 
index 1988253..0954fdd 100644 (file)
@@ -1,6 +1,8 @@
 // PR c++/55573
 // { dg-do compile }
 // { dg-options "-std=gnu++11" }
+// Ignore warning on some powerpc-ibm-aix configurations.
+// { dg-prune-output "non-standard ABI extension" }
 
 template <typename T, int N>
 struct ExtVecTraits {