Daily bump.
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-scalar-2.c
blobf624c4c751e9c76ee7f5ff5e4c6229ab2b4c7b40
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" } } */
14 /* { dg-final { cleanup-tree-dump "gimple" } } */