* Mainline merge as of 2006-02-16 (@111136).
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr25485.c
blob93f583cc34a0f260857815fabbe7c6980dd14d84
1 /* PR tree-optimization/25485
2 VRP did not fold TRUTH_AND_EXPR. Make sure it does now. */
4 /* { dg-options "-O2 -fdump-tree-vrp1" } */
6 int
7 foo (int a, int b)
9 if (a > 50)
10 return 19;
11 if (a > 63 && b < 50)
12 return 17;
13 return 31;
16 /* { dg-final { scan-tree-dump-times "if" 1 "vrp1"} } */
17 /* { dg-final { cleanup-tree-dump "vrp1" } } */