diff options
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r-- | gcc/c-parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c index aad1c6b..8f6cafd 100644 --- a/gcc/c-parser.c +++ b/gcc/c-parser.c @@ -7651,6 +7651,7 @@ c_parser_omp_parallel (c_parser *parser) if (stmt) OMP_FOR_CLAUSES (stmt) = ws_clause; stmt = c_finish_omp_parallel (par_clause, block); + OMP_PARALLEL_COMBINED (stmt) = 1; break; case PRAGMA_OMP_PARALLEL_SECTIONS: @@ -7660,6 +7661,7 @@ c_parser_omp_parallel (c_parser *parser) if (stmt) OMP_SECTIONS_CLAUSES (stmt) = ws_clause; stmt = c_finish_omp_parallel (par_clause, block); + OMP_PARALLEL_COMBINED (stmt) = 1; break; default: |