PR tree-optimization/86401
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-scalar-2.c
blob1957ffc30e73c7210daf564e04c4af9f5a392884
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
4 typedef int veci __attribute__ ((vector_size (4 * sizeof (int))));
6 int c;
8 void f (veci *a)
10 *a = *a + ++c;
13 /* { dg-final { scan-tree-dump-times " \\\+ 1" 1 "gimple" } } */