aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/fortran')
-rw-r--r--gcc/fortran/ChangeLog26
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 069f2e5..ba7c048 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,29 @@
+2022-11-28 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107819
+ * trans-stmt.cc (gfc_conv_elemental_dependencies): In checking for
+ elemental dependencies, treat dummy argument with VALUE attribute
+ as implicitly having intent(in).
+
+2022-11-28 Tobias Burnus <tobias@codesourcery.com>
+
+ * openmp.cc (OMP_DO_CLAUSES, OMP_SCOPE_CLAUSES,
+ OMP_SECTIONS_CLAUSES): Add 'nowait'.
+ (OMP_SINGLE_CLAUSES): Add 'nowait' and 'copyprivate'.
+ (gfc_match_omp_distribute_parallel_do,
+ gfc_match_omp_distribute_parallel_do_simd,
+ gfc_match_omp_parallel_do,
+ gfc_match_omp_parallel_do_simd,
+ gfc_match_omp_parallel_sections,
+ gfc_match_omp_teams_distribute_parallel_do,
+ gfc_match_omp_teams_distribute_parallel_do_simd): Disallow 'nowait'.
+ (gfc_match_omp_workshare): Match 'nowait' clause.
+ (gfc_match_omp_end_single): Use clause matcher for 'nowait'.
+ (resolve_omp_clauses): Reject 'nowait' + 'copyprivate'.
+ * parse.cc (decode_omp_directive): Break too long line.
+ (parse_omp_do, parse_omp_structured_block): Diagnose duplicated
+ 'nowait' clause.
+
2022-11-23 Steve Kargl <kargl@gcc.gnu.org>
PR fortran/107577