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 e79aebeaa2ea997271770e528dfa17f4decd298b..1c6a0df929a6368b5e5e9694d768a8a4bed849e3 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 af4b8d93bbf262013e765c03b21b5fb925d59eca..3f66c4eb74b403be1b220325f587f69ded0beb6d 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 bd17ac746cec76b8828c213225dcc4014a6575dc..2c2d2b4bfe133468a91c48c6fc9cbe7e408f7695 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 1988253008e488e31ffe8765dc37f66bb204bef0..0954fdd1bf910791294c194987d7b55f18925214 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 {