aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/cunroll-5.c
blob: 1e9b8bfbab008b50b5b55fbba9c093b86785973d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-tree-cunroll-details" } */
int *a;
test(int c)
{ 
  int i;
  for (i=0;i<6;i++)
    a[i]=5;
}
/* Basic testcase for complette unrolling.  */
/* { dg-final { scan-tree-dump "loop with 6 iterations completely unrolled" "cunroll"} } */
/* { dg-final { scan-tree-dump "Exit condition of peeled iterations was eliminated." "cunroll"} } */
/* { dg-final { scan-tree-dump "Last iteration exit edge was proved true." "cunroll"} } */
/* { dg-final { cleanup-tree-dump "cunroll" } } */