PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-25.c
blob774474d112352fe932d128f94a11a50b54d124aa
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=3" } */
4 /* We can only simplify the conditional when using strict overflow
5 semantics. */
7 int
8 foo (int x, int y)
10 return x - y < 0; /* { dg-warning "assuming signed overflow does not occur" "correct warning" { xfail *-*-* } } */