* Mainline merge as of 2006-02-16 (@111136).
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21090.c
blob8e32e4217440937f682ec7c574066cca402e3135
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp1" } */
4 int g, h;
6 int
7 foo (int a)
9 int *p;
11 if (a)
12 p = &g;
13 else
14 p = &h;
16 if (p != 0)
17 return 1;
18 else
19 return 0;
22 /* { dg-final { scan-tree-dump-times "Folding predicate.*to 1" 1 "vrp1" } } */
23 /* { dg-final { cleanup-tree-dump "vrp1" } } */