Skip to content
Snippets Groups Projects
Commit 44136976 authored by David Edelsohn's avatar David Edelsohn Committed by David Edelsohn
Browse files

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
parent 11452e7b
No related branches found
No related tags found
No related merge requests found
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> 2013-01-30 Georg-Johann Lay <avr@gjlay.de>
PR tree-optimization/56064 PR tree-optimization/56064
......
// { dg-do compile } // { dg-do compile }
// { dg-options "-std=gnu++11" } // { 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; typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
constexpr V4 build (float x, float y, float z) { return (V4){ x, y, z, 0 };} constexpr V4 build (float x, float y, float z) { return (V4){ x, y, z, 0 };}
......
// { dg-do compile } // { dg-do compile }
// { dg-options "-std=gnu++11" } // { 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; typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
......
// PR c++/55573 // PR c++/55573
// { dg-do compile } // { dg-do compile }
// { dg-options "-std=gnu++11" } // { 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> template <typename T, int N>
struct ExtVecTraits { struct ExtVecTraits {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment