c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-20.c
blob260d20c9c9c35dc357707f66a6b94bca51ca046e
1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu17 -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);