aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/parser.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2020-04-07 14:30:53 +0200
committerJakub Jelinek <jakub@redhat.com>2020-04-07 14:30:53 +0200
commit4df50a059fbd4d4a1cb067bd43caccdfca0327a8 (patch)
tree5b56ab4714e7f68a8262ee6a2f5a33b26e9f3282 /gcc/cp/parser.c
parent7a6588fe65432c0f1a8b5fdefba81700ebf88711 (diff)
downloadgcc-4df50a059fbd4d4a1cb067bd43caccdfca0327a8.zip
gcc-4df50a059fbd4d4a1cb067bd43caccdfca0327a8.tar.gz
gcc-4df50a059fbd4d4a1cb067bd43caccdfca0327a8.tar.bz2
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 <jakub@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.
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r--gcc/cp/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index 7e5921e..fbcdc9b 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -39818,9 +39818,9 @@ cp_parser_omp_parallel (cp_parser *parser, cp_token *pragma_tok,
cp_parser_end_omp_structured_block (parser, save);
stmt = finish_omp_parallel (cclauses[C_OMP_CLAUSE_SPLIT_PARALLEL],
block);
- OMP_PARALLEL_COMBINED (stmt) = 1;
if (ret == NULL_TREE)
return ret;
+ OMP_PARALLEL_COMBINED (stmt) = 1;
return stmt;
}
else if (strcmp (p, "loop") == 0)