blob: c6d10c2dbcf0cb930c38f29db26d1b9a676231f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */
int
foo (int *p, int i)
{
int x;
if (i > 10)
{
if (p)
{
x = *p;
p = 0;
}
}
else
p = 0;
/* This should be folded to if (1), but only if we insert an
assertion on the ELSE edge from the inner 'if (p)'. */
if (p == 0)
return x + 1;
return i;
}
/* { dg-final { scan-tree-dump-times "Folding predicate p_.*to 1" 1 "vrp1" } } */
|