blob: 1ef6c922e8634ef322bf01297ad11ce7be572fdc (
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
29
30
31
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */
foo (int i, int j, int a)
{
if (i >= 10)
if (i <= 30)
if (i == j)
{
a--;
/* This should fold to 'if (0)'. */
if (i < 0)
i = baz ();
/* This should fold to 'if (1)'. */
if (j > 0)
a--;
/* This should fold to 'if (0)'. */
if (i != j)
return 0;
}
return i + a + j;
}
/* { dg-final { scan-tree-dump-times "Folding predicate i_.*to 0" 1 "vrp1" } } */
/* { dg-final { scan-tree-dump-times "Folding predicate j_.*to 1" 1 "vrp1" } } */
/* { dg-final { scan-tree-dump-times "Folding predicate i_.*to 0" 1 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */
|