Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / vector6.C
blob9caf8c2f69aadfad4bf55edd03afa48abe048618
1 // { dg-options "" }
2 // { dg-do compile }
3 // C++/30016, we were allowing conversion between vector types
4 // and union types which is invalid.
6 typedef float __v_4F __attribute__ ((vector_size (16)));
7 typedef union {__v_4F v; float a[4];} __v4F;
8 void f(void)
10       __v_4F b;
11       (reinterpret_cast<__v4F>(b).a)[1] = 1; // { dg-error "" }