1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-cunrolli-details" } */ int a[1]; void test(int c) { int i; for (i=0;i<c;i++) { a[i]=5; } } /* If we start duplicating headers prior curoll, this loop will have 0 iterations. */ /* { dg-final { scan-tree-dump "loop with 1 iterations completely unrolled" "cunrolli"} } */