aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-11-29 00:18:09 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-11-29 00:18:09 +0000
commitb774853514c893e2946c0cc60e6345cd52be0cbc (patch)
tree973a3f829dc12dcdc664bcb297e44d85642ab0de /gcc/fortran
parent2b0ae7fb91f64fb005abf7d7903fd4c0764bb45c (diff)
downloadgcc-b774853514c893e2946c0cc60e6345cd52be0cbc.zip
gcc-b774853514c893e2946c0cc60e6345cd52be0cbc.tar.gz
gcc-b774853514c893e2946c0cc60e6345cd52be0cbc.tar.bz2
Daily bump.
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