constexpr-53094-2.C: Ignore non-standard ABI message.

* 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
This commit is contained in:
David Edelsohn 2013-01-30 16:33:14 +00:00 committed by David Edelsohn
parent 11452e7bb9
commit 44136976f9
4 changed files with 13 additions and 0 deletions

View 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

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

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

View 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 {