This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-14 in repository gcc.
from 2e2e7f904af GCN, nvptx: Support '--enable-languages=all' new fc69e76c1cb tree-optimization/114760 - check variants of >> and << in l [...] new fe1898b815a Make more places handle exact_div like trunc_div new a01aafa5002 OpenACC 2.7: Implement reductions for arrays and records
The 3 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/c/c-parser.cc | 23 +- gcc/c/c-typeck.cc | 81 ++- gcc/config/gcn/gcn-tree.cc | 623 +++++++++++++++++++-- gcc/config/nvptx/nvptx.cc | 423 ++++++++++++-- gcc/cp/parser.cc | 13 +- gcc/cp/semantics.cc | 77 +++ gcc/fortran/openmp.cc | 199 +++++-- gcc/fortran/trans-openmp.cc | 171 +++++- gcc/gimplify.cc | 44 +- gcc/match.pd | 60 +- gcc/omp-low.cc | 446 +++++++++++++-- gcc/omp-oacc-neuter-broadcast.cc | 124 +++- gcc/omp-offload.cc | 173 +++++- gcc/omp-offload.h | 10 + gcc/testsuite/c-c++-common/goacc/readonly-2.c | 4 +- .../goacc/{reduction-1.c => reduction-11.c} | 37 +- .../goacc/{reduction-3.c => reduction-12.c} | 28 +- .../goacc/{reduction-3.c => reduction-13.c} | 28 +- .../goacc/{reduction-4.c => reduction-14.c} | 22 +- gcc/testsuite/c-c++-common/goacc/reduction-15.c | 51 ++ gcc/testsuite/c-c++-common/goacc/reduction-16.c | 30 + gcc/testsuite/c-c++-common/goacc/reduction-9.c | 18 +- gcc/testsuite/g++.dg/goacc/reductions-1.C | 108 ++-- gcc/testsuite/gcc.dg/tree-ssa/pr114760-1.c | 69 +++ gcc/testsuite/gcc.dg/tree-ssa/pr114760-2.c | 20 + .../gfortran.dg/goacc/array-reduction.f90 | 47 +- .../gfortran.dg/goacc/enter-exit-data-2.f90 | 8 +- gcc/testsuite/gfortran.dg/goacc/finalize-1.f | 4 +- .../gfortran.dg/goacc/kernels-decompose-1.f95 | 10 +- gcc/testsuite/gfortran.dg/goacc/pr70828.f90 | 2 +- gcc/testsuite/gfortran.dg/goacc/reduction.f95 | 176 +++--- .../gfortran.dg/gomp/target-enter-exit-data.f90 | 8 +- gcc/tree-loop-distribution.cc | 20 + gcc/tree-ssa-loop-ivopts.cc | 2 + gcc/tree-ssa-loop-niter.cc | 56 +- gcc/tree.h | 13 + .../libgomp.oacc-c-c++-common/reduction-arrays-1.c | 69 +++ .../libgomp.oacc-c-c++-common/reduction-arrays-2.c | 91 +++ .../libgomp.oacc-c-c++-common/reduction-arrays-3.c | 90 +++ .../libgomp.oacc-c-c++-common/reduction-arrays-4.c | 91 +++ .../libgomp.oacc-c-c++-common/reduction-arrays-5.c | 89 +++ .../reduction-structs-1.c | 121 ++++ .../libgomp.oacc-c-c++-common/reduction.h | 52 ++ .../{reduction-1.f90 => reduction-10.f90} | 362 ++++++------ .../{reduction-2.f90 => reduction-11.f90} | 282 +++++----- .../{reduction-3.f90 => reduction-12.f90} | 278 ++++----- .../{reduction-4.f90 => reduction-13.f90} | 70 ++- .../libgomp.oacc-fortran/reduction-14.f90 | 68 +++ .../libgomp.oacc-fortran/reduction-15.f90 | 98 ++++ .../libgomp.oacc-fortran/reduction-16.f90 | 99 ++++ 50 files changed, 4114 insertions(+), 974 deletions(-) copy gcc/testsuite/c-c++-common/goacc/{reduction-1.c => reduction-11.c} (66%) copy gcc/testsuite/c-c++-common/goacc/{reduction-3.c => reduction-12.c} (65%) copy gcc/testsuite/c-c++-common/goacc/{reduction-3.c => reduction-13.c} (65%) copy gcc/testsuite/c-c++-common/goacc/{reduction-4.c => reduction-14.c} (64%) create mode 100644 gcc/testsuite/c-c++-common/goacc/reduction-15.c create mode 100644 gcc/testsuite/c-c++-common/goacc/reduction-16.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr114760-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr114760-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-arrays-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-arrays-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-arrays-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-arrays-4.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-arrays-5.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-structs-1.c copy libgomp/testsuite/libgomp.oacc-fortran/{reduction-1.f90 => reduction-10.f90} (54%) copy libgomp/testsuite/libgomp.oacc-fortran/{reduction-2.f90 => reduction-11.f90} (54%) copy libgomp/testsuite/libgomp.oacc-fortran/{reduction-3.f90 => reduction-12.f90} (54%) copy libgomp/testsuite/libgomp.oacc-fortran/{reduction-4.f90 => reduction-13.f90} (54%) create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/reduction-14.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/reduction-15.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/reduction-16.f90