Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / gcc.dg / vect / dump-tree-dceloop-pr26359.c
blobae7aea25ebdd1d54877b7acd2f3da9022c70a5f1
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 int a[256], b[256], c[256];
6 foo () {
7 int i;
9 for (i=0; i<256; i++){
10 a[i] = b[i] + c[i];
14 /* { dg-final { scan-tree-dump-times "Deleting : vect_" 0 "dceloop3" } } */
15 /* { dg-final { cleanup-tree-dump "dceloop\[1-3\]" } } */
16 /* { dg-final { cleanup-tree-dump "vect" } } */