[Bug c/98183] [9/10/11 Regression] ICE in expand_gimple_stmt_1, at cfgexpand.c:3972

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Fri Dec 11 18:53:13 GMT 2020


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

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
And corresponding OpenMP -fopenmp -fexceptions -O0:

void bar ();
int x, y;

void
foo (void)
{
#pragma omp target data map(tofrom: x)
  {
#pragma omp target data map(tofrom: y)
    bar ();
  }
}

ICEs too.


More information about the Gcc-bugs mailing list