Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / pr20657.c
blobabb14e604f2579212ae1575f1b7fae3207d439d3
1 /* PR tree-optimization/20657
2 VRP did not pick up a conditional equivalence from the first "if"
3 statement, which was needed to eliminate the second "if" statement. */
5 /* { dg-do compile } */
6 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-vrp-details" } */
8 int
9 foo (int a)
11 if (a == 0)
12 if (a == 0)
13 return 1;
14 return 0;
17 /* { dg-final { scan-tree-dump-times "Folding predicate" 1 "vrp"} } */
18 /* { dg-final { cleanup-tree-dump "vrp" } } */