libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21563.c
blob504b3cce6e6a81e37b73d7142c58606854885293
1 /* PR tree-optimization/21563
2 Make sure VRP folds the second "if" statement. */
4 /* { dg-do compile } */
5 /* { dg-options "-O2 -fno-thread-jumps -fdisable-tree-evrp -fdump-tree-vrp1-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 "vrp1"} } */