PR tree-optimization/81627
[official-gcc.git] / gcc / testsuite / gcc.dg / pr29736.c
blob54eb9aaaa788c0dc58c8c76c9edce079c21eb42f
1 /* PR c/29736 */
3 int __attribute__ ((vector_size (8), vector_size (8))) v; /* { dg-error "invalid vector type" } */
5 extern int __attribute__ ((vector_size (8))) w;
6 int __attribute__ ((vector_size (8))) w;
8 void
9 foo ()
11 v = v + v;
12 w = w + w;