* doc/generic.texi (ANNOTATE_EXPR): Document 3rd operand.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / cunroll-12.c
blobaa472a6f0ad842ece8302130be7853f7f16f900f
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -Warray-bounds -fdump-tree-cunroll-blocks-details" } */
3 struct a {int a[8];int b;};
4 void
5 t(struct a *a)
7 for (int i=0;a->a[i];i++)
8 a->a[i]++;
10 /* { dg-final { scan-tree-dump-times "loop with 6 iterations completely unrolled" 1 "cunroll" } } */
11 /* { dg-final { scan-tree-dump-not "Invalid sum" "cunroll" } } */