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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
int a[5];
int
foo (int x)
{
  for (int i = 0; i < 5; i++)
    if (a[i] && i == 0)
      return 0;
  return x;
}

Reply via email to