(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
Wstrict-overflow-8.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fstrict-overflow -O2 -Wall -Wno-strict-overflow" } */
       3  
       4  /* Source: Ian Lance Taylor.  */
       5  
       6  int
       7  foo (int i)
       8  {
       9    return i + 10 > i;
      10  }