aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstrict-overflow-25.c
blob: 00916446371a7399be5ae0807ad4b9113b017b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=3" } */

/* We can only simplify the conditional when using strict overflow
   semantics.  */

int
foo (int x, int y)
{
  return x - y < 0; /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */
}