blob: 591507c22f7c51999a5aea33f36d06b99c78d8bf (
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
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1 -fno-early-inlining" } */
inline int
bounce (int arg)
{
return arg;
}
foo (int k, int j, int z)
{
if (k > z)
{
if (j > k)
{
/* We should fold this to if (1). */
if (j > bounce (z))
return j;
}
}
return j+1;
}
/* { dg-final { scan-tree-dump-times "Folding predicate.*to 1" 1 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */
|