OSDN Git Service

2009-01-10 Sebastian Pop <sebastian.pop@amd.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-20.c
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow" } */
3
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.  */
6
7 void f (int m, int n)
8 {
9   int j;
10  
11   for (j = m; j < m + 10 && j < n; j ++)
12     do_something (j);
13 }