PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-2.c
blob2112571cabe4d895df6d1d8cc15d739b5ff46dd6
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=2" } */
4 /* Source: Ian Lance Taylor. Based on strict-overflow-1.c. */
6 /* We can only simplify the conditional when using strict overflow
7 semantics. */
9 int
10 foo (int i)
12 return i - 5 < 10;