https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88107
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Normally that is guaranteed by the MUST_NOT_THROW regions added during
omp-low.c (maybe_catch_exception), because OpenMP requires that the regions
that are to be outlined (e.g. omp parallel, omp task, omp target etc.) have
body which is a SESE region, one that must not be left through exception.
So this is something the parloops pass gets wrong (or should just punt on).