3 /* PR C/31499, test that the C front-end treats vectors like an array
4 and that it works at runtime. */
6 #define vector __attribute__((__vector_size__(4*sizeof(int)) ))
7 vector
signed int v1
[]={0,1,2,3,4,5,6,7};
13 for (i
= 0; i
< sizeof(v1
)/sizeof(v1
[0]); i
++)
18 for (j
= 0; j
< 4; j
++)
20 if (d
[j
] != i
* 4 + j
)