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 (); }