Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / pr21090.c
blobe6b3c885b9c73af8641c3f1a52b516e361a1c2bb
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp" } */
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 "vrp" } } */
23 /* { dg-final { cleanup-tree-dump "vrp" } } */