Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-20.c
blob207162d0e8e1303de564cd8d07133845a101f346
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 f (int m, int n)
9 int j;
11 for (j = m; j < m + 10 && j < n; j ++)
12 do_something (j);