diff options
author | David Edelsohn <dje.gcc@gmail.com> | 2013-01-30 16:33:14 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2013-01-30 11:33:14 -0500 |
commit | 44136976f9a52137fdd2f3f1504f057971c723a6 (patch) | |
tree | 95147f8dcd271e7f019c0d1e67d7847f02db5715 | |
parent | 11452e7bb94745d54860580134bf0c2394251834 (diff) | |
download | gcc-44136976f9a52137fdd2f3f1504f057971c723a6.zip gcc-44136976f9a52137fdd2f3f1504f057971c723a6.tar.gz gcc-44136976f9a52137fdd2f3f1504f057971c723a6.tar.bz2 |
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
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C | 2 |
4 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e79aebe..1c6a0df 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C index af4b8d9..3f66c4e 100644 --- a/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C @@ -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 };} diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C index bd17ac7..2c2d2b4 100644 --- a/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-3.C @@ -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; diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C index 1988253..0954fdd 100644 --- a/gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-55573.C @@ -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 { |