blob: 7eab7fd463636f7bd3adf7e63a5946694de66439 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ifcombine-details-blocks" } */
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 { scan-tree-dump-not "Invalid sum" "ifcombine" } } */