IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-3.c
blob22f6a56a99e056879d22522d989e59197f016742
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=4" } */
4 /* Source: Ian Lance Taylor. Based on strict-overflow-2.c. */
6 /* We can only simplify the division when using strict overflow
7 semantics. */
9 int
10 foo (int i)
12 return (i * 100) / 10; /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */