https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94512
--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:4df50a059fbd4d4a1cb067bd43caccdfca0327a8 commit r10-7585-g4df50a059fbd4d4a1cb067bd43caccdfca0327a8 Author: Jakub Jelinek <ja...@redhat.com> Date: Tue Apr 7 14:30:53 2020 +0200 openmp: Fix parallel master error recovery [PR94512] We need to set OMP_PARALLEL_COMBINED only if the parsing of omp_master succeeded, because otherwise there is no nested master construct in the parallel. 2020-04-07 Jakub Jelinek <ja...@redhat.com> PR c++/94512 * c-parser.c (c_parser_omp_parallel): Set OMP_PARALLEL_COMBINED if c_parser_omp_master succeeded. * parser.c (cp_parser_omp_parallel): Set OMP_PARALLEL_COMBINED if cp_parser_omp_master succeeded. * g++.dg/gomp/pr94512.C: New test.