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