aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr77901.c
blob: 5c3936af65ad3c91bb68d6f3cd5912d1ccf7d50e (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/77901 */

void bar (void);

void
foo (int *x, long *y)
{
  if (*y && *x != 10 && *x != 12 && *y >= 0)
    bar ();
}