OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vector9.C
1 // PR c++/34891
2
3 typedef float v4f __attribute__((vector_size(8)));
4 typedef int   v4i __attribute__((vector_size(8)));
5
6 void foo()
7 {
8   v4f v;
9   !(v4i)v; // { dg-error "int __vector__|argument" }
10 }