blob: 617cb585a94869d758d278b82e3c5edb3e25146a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ifcombine" } */
int test1 (int i, int j)
{
if (i >= j)
if (i != j)
return 0;
return -1;
}
/* The above should be optimized to a i > j test by ifcombine. */
/* { dg-final { scan-tree-dump " > " "ifcombine" } } */
/* { dg-final { cleanup-tree-dump "ifcombine" } } */
|