Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-14.c
blob6f3c5a24fd15018f0b9fcf446fcf3d89313a555a
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=4" } */
4 /* Source: Ian Lance Taylor. */
6 int
7 foo (int j)
9 int i;
10 int sum = 0;
12 for (i = 1; i < j; i += i)
13 sum += i / 16; /* { dg-warning "assuming signed overflow does not occur" "" } */
14 return sum;