gcc/
[official-gcc.git] / gcc / testsuite / gcc.dg / no-strict-overflow-5.c
blob7f82014c76e47ea0e6f81e6e6e40d7b23f1cc1da
1 /* { dg-do compile } */
2 /* { dg-options "-fno-strict-overflow -O2 -fdump-tree-final_cleanup" } */
4 /* Dual of strict-overflow-5.c. */
6 /* We can only unroll when using strict overflow semantics. */
8 int foo (int i)
10 int index;
11 int r=0;
13 for (index = i; index <= i+4; index+=2)
14 r++;
16 return r;
19 /* { dg-final { scan-tree-dump-times "r = 3" 0 "final_cleanup" } } */
20 /* { dg-final { cleanup-tree-dump "final_cleanup" } } */