blob: e880bef45ff005ff6f6c65bd62e98b1f1ff09db6 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=3" } */
/* Source: Ian Lance Taylor. Based on strict-overflow-2.c. */
/* We can only simplify the division when using strict overflow
semantics. */
int
foo (int i)
{
return (i * 100) / 10;
}