Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030731-2.c
blob069f953c0f788049385af7c214d581e8f01aad1c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dce2" } */
4 void foo (void);
6 void
7 bar (int i, int partial, int args_addr)
9 int offset = 0;
10 if (args_addr == 0)
11 offset = 0;
12 if (i >= offset)
13 foo ();
16 /* There should be only one IF conditional since the first does nothing
17 useful. */
18 /* { dg-final { scan-tree-dump-times "if " 1 "dce2"} } */