https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81874

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:

int a, c;
int
d (int f, int g)
{
  return g ?: f;
}
void
h ()
{
  int b = a > 0 && 1 > 2147483647 - a, e = b;
  c = d (++a, e);
}

Reply via email to