./:
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-4.c
blobe880bef45ff005ff6f6c65bd62e98b1f1ff09db6
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=3" } */
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;