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 8b55d116b8f OpenMP: Constructors and destructors for "declare target" s [...] new caacc841ee7 openmp: Fix handling of declare target statics with array t [...] new b1fc2243dfd openmp: Fix up cloning of dynamic C++ initializers for Open [...] new ff45d02ee9e Adjust 'libgomp.c++/target-exceptions-pr118794-1.C' for 'ta [...] new 48ff90a2f1c GCN: Properly switch sections in 'gcn_hsa_declare_function_ [...] new efe9d34bd9a Add 'libgomp.c-c++-common/target-cdtor-1.c' new 591d91c2b74 GCN, nvptx offloading: Host/device compatibility: Itanium C [...]
The 6 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.omp | 8 ++ gcc/config/gcn/gcn.cc | 6 +- gcc/cp/ChangeLog.omp | 26 ++++ gcc/cp/cp-tree.h | 2 +- gcc/cp/decl.cc | 20 ++- gcc/cp/decl2.cc | 30 ++++- gcc/testsuite/ChangeLog.omp | 14 +++ gcc/testsuite/g++.dg/gomp/pr118876.C | 6 + gcc/testsuite/g++.dg/gomp/pr119370.C | 10 ++ libgcc/ChangeLog.omp | 11 ++ libgcc/config/gcn/crt0.c | 32 +++++ libgcc/config/nvptx/gbl-ctors.c | 16 +++ libgomp/ChangeLog.omp | 39 ++++++ libgomp/Makefile.am | 2 +- libgomp/Makefile.in | 9 +- libgomp/config/accel/target-cxa-dso-dtor.c | 62 +++++++++ libgomp/target-cxa-dso-dtor.c | 3 + libgomp/testsuite/libgomp.c++/target-cdtor-1.C | 104 +++++++++++++++ libgomp/testsuite/libgomp.c++/target-cdtor-2.C | 140 +++++++++++++++++++++ ...arget-exceptions-pr118794-1-offload-sorry-GCN.C | 6 +- ...get-exceptions-pr118794-1-offload-sorry-nvptx.C | 6 +- .../libgomp.c++/target-exceptions-pr118794-1.C | 6 +- .../libgomp.c++/target-exceptions-throw-1.C | 3 - .../libgomp.c++/target-exceptions-throw-2.C | 3 - .../libgomp.c-c++-common/target-cdtor-1.c | 89 +++++++++++++ .../libgomp.oacc-c++/exceptions-throw-1.C | 3 - .../libgomp.oacc-c++/exceptions-throw-2.C | 3 - 27 files changed, 622 insertions(+), 37 deletions(-) create mode 100644 gcc/testsuite/g++.dg/gomp/pr118876.C create mode 100644 gcc/testsuite/g++.dg/gomp/pr119370.C create mode 100644 libgomp/config/accel/target-cxa-dso-dtor.c create mode 100644 libgomp/target-cxa-dso-dtor.c create mode 100644 libgomp/testsuite/libgomp.c++/target-cdtor-1.C create mode 100644 libgomp/testsuite/libgomp.c++/target-cdtor-2.C create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-cdtor-1.c