* g++.dg/cpp0x/constexpr-53094-2.C: Ignore non-standard ABI
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-55573.C
blob0954fdd1bf910791294c194987d7b55f18925214
1 // PR c++/55573
2 // { dg-do compile }
3 // { dg-options "-std=gnu++11" }
4 // Ignore warning on some powerpc-ibm-aix configurations.
5 // { dg-prune-output "non-standard ABI extension" }
7 template <typename T, int N>
8 struct ExtVecTraits {
9   typedef T __attribute__((vector_size (N * sizeof (T)))) type;
12 template <typename T>
13 using Vec4 = typename ExtVecTraits<T,4>::type;
15 template <typename T>
16 struct Rot3
18   typedef Vec4<T> Vec;
19   Vec axis[3];
20   constexpr Rot3 (Vec4<T> ix, Vec4<T> iy, Vec4<T> iz) : axis {ix, iy, iz} {}
23 typedef Vec4<float> Vec;
24 Rot3<float> r2 ((Vec) {0, 1, 0, 0}, (Vec){0, 0, 1, 0}, (Vec){1, 0, 0, 0});