This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-11 in repository gcc.
from 3d0a4edc3a9 Merge remote-tracking branch 'origin/releases/gcc-11' into [...] new aa75f5e93ac openmp: in_reduction clause support on target construct
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/c-family/c-common.h | 4 +- gcc/c-family/c-omp.c | 13 ++ gcc/c/c-parser.c | 18 +- gcc/c/c-typeck.c | 131 +++++++------ gcc/cp/parser.c | 19 +- gcc/cp/pt.c | 9 +- gcc/cp/semantics.c | 146 ++++++++------- gcc/gimplify.c | 126 ++++++++++++- gcc/omp-expand.c | 4 + gcc/omp-low.c | 203 +++++++++++++++++++-- gcc/testsuite/c-c++-common/gomp/clauses-1.c | 30 +-- .../c-c++-common/gomp/target-in-reduction-1.c | 12 ++ gcc/tree-pretty-print.c | 9 +- gcc/tree.h | 3 +- .../testsuite/libgomp.c++/target-in-reduction-1.C | 113 ++++++++++++ .../testsuite/libgomp.c++/target-in-reduction-2.C | 182 ++++++++++++++++++ .../libgomp.c-c++-common/target-in-reduction-1.c | 104 +++++++++++ .../libgomp.c-c++-common/target-in-reduction-2.c | 173 ++++++++++++++++++ 18 files changed, 1134 insertions(+), 165 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/target-in-reduction-1.c create mode 100644 libgomp/testsuite/libgomp.c++/target-in-reduction-1.C create mode 100644 libgomp/testsuite/libgomp.c++/target-in-reduction-2.C create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-in-reduction-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-in-reduction-2.c