Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp34.c
blobd2a36a706f23c5bf344b6354a2b61f4320f42ff6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp1" } */
4 void bar (void);
6 void
7 foo (int a)
9 switch (a)
11 case 4:
12 if (a >= 3)
13 if (a <= 5)
14 bar ();
18 /* Both ifs should be optimized (and switch statement will be the only if
19 in the function). */
20 /* { dg-final { scan-tree-dump-times "if \\\(" 1 "vrp1" } } */