PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-1.c
blob068bfe49446a46c536694d2ef7bf4fc0ef348b65
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=3" } */
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; /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */