Add compile command to each testcase
[gcc-vect-testsuite.git] / pr39529.c
blob4853c13503f1544e36a34104a77c37d559d64cf8
1 /* { dg-do compile } */
3 void
4 foo (void)
6 char a[1024];
7 char *p = &a[0];
8 char *p2;
10 p2 = p + 1024;
13 p += 2;
14 *(p-2) = 1;
15 *(p-1) = 1;
16 } while (p < p2);
19 /* { dg-final { cleanup-tree-dump "vect" } } */