Document gcov-io (PR gcov-profile/84735).
[official-gcc.git] / gcc / testsuite / gcc.dg / strict-overflow-5.c
blob9085f1532b529b0d30936063abddf2b6693faed6
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -fdump-tree-optimized" } */
4 /* We can only unroll when using strict overflow semantics. */
6 int foo (int i)
8 int index;
9 int r=0;
11 for (index = i; index <= i+4; index+=2)
12 r++;
14 return r;
17 /* { dg-final { scan-tree-dump "return 3" "optimized" } } */