Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / vrp11.c
blobb9e5fca71f998eee0bcd3a7dc328db49762624e8
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp" } */
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 "vrp" } } */
20 /* { dg-final { cleanup-tree-dump "vrp" } } */