This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 4b1ddbc Regenerate .pot files. new 0c30259 gcc/ PR lto/70289 PR ipa/70348 PR tree-optimization/70373 [...]
The 1 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/ChangeLog | 20 + gcc/gimplify.c | 55 +++ gcc/omp-low.c | 82 +++- gcc/testsuite/ChangeLog | 13 + gcc/testsuite/c-c++-common/goacc/reduction-5.c | 16 + .../c-c++-common/goacc/reduction-promotions.c | 32 ++ gcc/testsuite/gfortran.dg/goacc/reduction-3.f95 | 10 + .../gfortran.dg/goacc/reduction-promotions.f90 | 46 ++ gcc/tree.h | 3 + libgomp/ChangeLog | 62 +++ .../loop-reduction-gang-np-1.c | 45 ++ .../loop-reduction-gv-np-1.c | 30 ++ .../loop-reduction-gw-np-1.c | 30 ++ .../loop-reduction-gwv-np-1.c | 28 ++ .../loop-reduction-gwv-np-2.c | 34 ++ .../loop-reduction-gwv-np-3.c | 33 ++ .../loop-reduction-gwv-np-4.c | 55 +++ .../loop-reduction-vector-p-1.c | 43 ++ .../loop-reduction-vector-p-2.c | 41 ++ .../loop-reduction-worker-p-1.c | 43 ++ .../loop-reduction-wv-p-1.c | 41 ++ .../loop-reduction-wv-p-2.c | 45 ++ .../loop-reduction-wv-p-3.c | 38 ++ .../par-loop-comb-reduction-1.c | 38 ++ .../par-loop-comb-reduction-2.c | 40 ++ .../par-loop-comb-reduction-3.c | 42 ++ .../par-loop-comb-reduction-4.c | 55 +++ .../libgomp.oacc-c-c++-common/par-reduction-1.c | 22 +- .../libgomp.oacc-c-c++-common/par-reduction-2.c | 20 +- .../libgomp.oacc-c-c++-common/parallel-dims.c | 8 + .../libgomp.oacc-c-c++-common/parallel-reduction.c | 72 ++++ .../testsuite/libgomp.oacc-c-c++-common/pr70289.c | 13 + .../testsuite/libgomp.oacc-c-c++-common/pr70373.c | 20 + .../libgomp.oacc-c-c++-common/reduction-1.c | 145 ++++--- .../libgomp.oacc-c-c++-common/reduction-2.c | 163 +++---- .../libgomp.oacc-c-c++-common/reduction-3.c | 133 +++--- .../libgomp.oacc-c-c++-common/reduction-4.c | 85 ++-- .../libgomp.oacc-c-c++-common/reduction-5.c | 57 ++- .../libgomp.oacc-c-c++-common/reduction-6.c | 36 ++ .../libgomp.oacc-c-c++-common/reduction.h | 43 ++ .../libgomp.oacc-fortran/parallel-reduction.f90 | 47 +++ libgomp/testsuite/libgomp.oacc-fortran/pr70289.f90 | 20 + .../testsuite/libgomp.oacc-fortran/reduction-1.f90 | 470 +++++++++++++++++---- .../testsuite/libgomp.oacc-fortran/reduction-2.f90 | 344 ++++++++++++--- .../testsuite/libgomp.oacc-fortran/reduction-3.f90 | 342 ++++++++++++--- .../testsuite/libgomp.oacc-fortran/reduction-4.f90 | 108 +++-- .../testsuite/libgomp.oacc-fortran/reduction-5.f90 | 86 +++- .../testsuite/libgomp.oacc-fortran/reduction-6.f90 | 86 +++- .../testsuite/libgomp.oacc-fortran/reduction-7.f90 | 88 ++++ 49 files changed, 2881 insertions(+), 547 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc/reduction-5.c create mode 100644 gcc/testsuite/c-c++-common/goacc/reduction-promotions.c create mode 100644 gcc/testsuite/gfortran.dg/goacc/reduction-3.f95 create mode 100644 gcc/testsuite/gfortran.dg/goacc/reduction-promotions.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gang-np-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gv-np-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gw-np-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gwv-np-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gwv-np-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gwv-np-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-gwv-np-4.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-vect [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-vect [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-work [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-wv-p-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-wv-p-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/loop-reduction-wv-p-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/par-loop-comb-reduc [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/par-loop-comb-reduc [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/par-loop-comb-reduc [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/par-loop-comb-reduc [...] create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/parallel-reduction.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr70289.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/pr70373.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-6.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/reduction.h create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/parallel-reduction.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/pr70289.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/reduction-7.f90