OSDN Git Service

gcc/cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vector6.C
1 // { dg-options "" }
2 // { dg-do compile }
3 // C++/30016, we were allowing conversion between vector types
4 // and union types which is invalid.
5
6 typedef float __v_4F __attribute__ ((vector_size (16)));
7 typedef union {__v_4F v; float a[4];} __v4F;
8 void f(void)
9 {
10       __v_4F b;
11       (reinterpret_cast<__v4F>(b).a)[1] = 1; // { dg-error "" }
12 }