This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2949e086572 rs6000: Rename function adjust_vectorization_cost new 0c111868b79 [Ada] Add push/pop capability in Output new 2631d95ae29 libomp: Add omp_depend_kind to omp_lib.{f90,h} new de8bfcc8e45 gcov-tool: Fix merging of different endian coverage data [PR96267] new 3968b02a4b1 [Ada] Ada2020: AI12-0027 Access values and unaliased component new ad1bea3a4b3 [Ada] Stub CUDA_Execute and CUDA_Global pragmas new 084dc63a020 OpenMP: Support 'lastprivate (conditional:' in Fortran
The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ada/aspects.ads | 4 + gcc/ada/einfo.adb | 14 + gcc/ada/einfo.ads | 10 + gcc/ada/exp_ch4.adb | 4 +- gcc/ada/exp_ch5.adb | 5 +- gcc/ada/exp_ch6.adb | 16 +- gcc/ada/output.adb | 29 ++ gcc/ada/output.ads | 9 + gcc/ada/par-prag.adb | 42 +- gcc/ada/rtsfind.adb | 6 + gcc/ada/rtsfind.ads | 17 + gcc/ada/sem_attr.adb | 83 ++++ gcc/ada/sem_ch13.adb | 443 +++++++++++---------- gcc/ada/sem_ch13.ads | 15 +- gcc/ada/sem_prag.adb | 144 ++++++- gcc/ada/sem_prag.ads | 1 + gcc/ada/sem_res.adb | 18 +- gcc/ada/snames.ads-tmpl | 4 + gcc/fortran/gfortran.h | 1 + gcc/fortran/intrinsic.texi | 1 + gcc/fortran/openmp.c | 20 +- gcc/fortran/trans-openmp.c | 23 +- gcc/gcov-io.c | 2 +- .../gfortran.dg/gomp/lastprivate-conditional-1.f90 | 82 ++++ .../gfortran.dg/gomp/lastprivate-conditional-2.f90 | 46 +++ .../gfortran.dg/gomp/lastprivate-conditional-3.f90 | 65 +++ .../gfortran.dg/gomp/lastprivate-conditional-4.f90 | 28 ++ .../gfortran.dg/gomp/lastprivate-conditional-5.f90 | 47 +++ libgomp/Makefile.in | 1 + libgomp/configure | 29 +- libgomp/configure.ac | 13 + libgomp/libgomp_f.h.in | 7 +- libgomp/omp_lib.f90.in | 1 + libgomp/omp_lib.h.in | 4 +- libgomp/testsuite/Makefile.in | 1 + 35 files changed, 952 insertions(+), 283 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/lastprivate-conditional-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/lastprivate-conditional-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/lastprivate-conditional-3.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/lastprivate-conditional-4.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/lastprivate-conditional-5.f90