blob: c51fdf3a9c4f583cf8f4fbe85af7d90ed947e13a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-details-blocks" } */
/* Testcase extracted from PR15353. */
int foo (int x, int a)
{
/* if ((x > a) || (x == a)) */
if (x > a)
goto doit;
if (x == a)
goto doit;
/* else */
return 0;
/* then - returing 1 causes phiopt to trigger */
doit:
return 2;
}
/* { dg-final { scan-tree-dump ">=" "optimized" } } */
/* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */