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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org
            Summary|[16 Regression] ICEs with   |[16 Regression] ICEs with
                   |darktable-5.2.1 during IPA  |darktable-5.2.1 during IPA
                   |pass: cp                    |pass: cp since r16-5466

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
int a, b, c;

static void
foo (int g)
{
  int f = c ? c : 2;
  if (c)
    b = 3;
  if (!g)
    for (int d = 0; d < f; ++d)
#pragma omp parallel
      while (a)
        ;
}

void
bar (void)
{
  foo (1);
}

Started with r16-5466-gf9c01c47f8e5451e41a5df78f044d7b1e7b3d5d6

Reply via email to