This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 8d8ed5c8b52 predcom: Refactor more by encapsulating global states new 7619d33471c 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 | 109 +++++++---- gcc/cp/parser.c | 18 +- gcc/cp/pt.c | 9 +- gcc/cp/semantics.c | 111 ++++++----- 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.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 ++++++++++++++++++ 17 files changed, 1098 insertions(+), 134 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