Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-20.c
blobae2db93c6127d1de863f835b273cce98eb5dda38
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow" } */
4 /* Don't warn about an overflow in a copied loop header. We used to
5 get a warning in value numbering. This is PR 33565. */
7 void do_something ();
9 void f (int m, int n)
11 int j;
13 for (j = m; j < m + 10 && j < n; j ++)
14 do_something (j);