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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|needs-reduction             |

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase -O3 -msse4:
int a, b;
void foo (void);

int
bar (int j)
{
  int i = b;
  for (; j; j++)
    {
      if (a)
        continue;
      if (i)
        return 1;
      foo ();
    }
  return 42;
}

Reply via email to