This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from dbf8bd3c2f2 libstdc++: Skip atomic instructions in shared_ptr when both [...] new 0ab29cf0bb6 openmp: Improve OpenMP target support for C++ (PR92120)
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/c-parser.c | 3 +- gcc/c/c-typeck.c | 23 +- gcc/cp/cp-tree.h | 2 + gcc/cp/parser.c | 69 +-- gcc/cp/pt.c | 5 + gcc/cp/semantics.c | 581 ++++++++++++++++++++++-- gcc/gimplify.c | 125 ++++- gcc/omp-low.c | 2 + gcc/testsuite/g++.dg/gomp/target-3.C | 36 ++ gcc/testsuite/g++.dg/gomp/target-lambda-1.C | 94 ++++ gcc/testsuite/g++.dg/gomp/target-lambda-2.C | 35 ++ gcc/testsuite/g++.dg/gomp/target-this-1.C | 33 ++ gcc/testsuite/g++.dg/gomp/target-this-2.C | 49 ++ gcc/testsuite/g++.dg/gomp/target-this-3.C | 105 +++++ gcc/testsuite/g++.dg/gomp/target-this-4.C | 107 +++++ gcc/testsuite/g++.dg/gomp/target-this-5.C | 34 ++ gcc/testsuite/g++.dg/gomp/this-2.C | 24 +- gcc/testsuite/gcc.dg/gomp/target-3.c | 16 + gcc/tree-pretty-print.c | 8 + include/gomp-constants.h | 14 +- libgomp/libgomp.h | 2 +- libgomp/oacc-mem.c | 7 +- libgomp/target.c | 76 +++- libgomp/testsuite/libgomp.c++/target-23.C | 34 ++ libgomp/testsuite/libgomp.c++/target-lambda-1.C | 86 ++++ libgomp/testsuite/libgomp.c++/target-lambda-2.C | 30 ++ libgomp/testsuite/libgomp.c++/target-this-1.C | 29 ++ libgomp/testsuite/libgomp.c++/target-this-2.C | 47 ++ libgomp/testsuite/libgomp.c++/target-this-3.C | 99 ++++ libgomp/testsuite/libgomp.c++/target-this-4.C | 104 +++++ libgomp/testsuite/libgomp.c++/target-this-5.C | 30 ++ 31 files changed, 1766 insertions(+), 143 deletions(-) create mode 100644 gcc/testsuite/g++.dg/gomp/target-3.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-lambda-1.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-lambda-2.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-this-1.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-this-2.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-this-3.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-this-4.C create mode 100644 gcc/testsuite/g++.dg/gomp/target-this-5.C create mode 100644 gcc/testsuite/gcc.dg/gomp/target-3.c create mode 100644 libgomp/testsuite/libgomp.c++/target-23.C create mode 100644 libgomp/testsuite/libgomp.c++/target-lambda-1.C create mode 100644 libgomp/testsuite/libgomp.c++/target-lambda-2.C create mode 100644 libgomp/testsuite/libgomp.c++/target-this-1.C create mode 100644 libgomp/testsuite/libgomp.c++/target-this-2.C create mode 100644 libgomp/testsuite/libgomp.c++/target-this-3.C create mode 100644 libgomp/testsuite/libgomp.c++/target-this-4.C create mode 100644 libgomp/testsuite/libgomp.c++/target-this-5.C