No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / tree-ssa / pr21563.c
blobb3c45886eb10a9b209712289ee9087475d644e50
1 /* PR tree-optimization/21563
2 Make sure VRP folds the second "if" statement. */
4 /* { dg-do compile } */
5 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-vrp-details" } */
7 int
8 foo (int a)
10 if (a > 1)
11 if (a == 0)
12 return 1;
13 return 0;
16 /* { dg-final { scan-tree-dump-times "Folding predicate" 1 "vrp"} } */
17 /* { dg-final { cleanup-tree-dump "vrp" } } */