Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tree-ssa / vrp11.c
blobd21985626fa3557803eaba7518eebd684efd45f6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp1" } */
4 foo (int k, int j, int z)
6 if (k > z)
8 if (j > k)
10 /* We should fold this to if (1). */
11 if (j > z)
12 return j;
16 return j;
19 /* { dg-final { scan-tree-dump-times "Folding predicate.*to 1" 1 "vrp1" } } */
20 /* { dg-final { cleanup-tree-dump "vrp1" } } */