This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2b809d6f4fb i386: Add PTA_AVX10_1_256 to PTA_DIAMONDRAPIDS new 001fb23ae46 gomp: Various fixes for SVE types [PR101018] new 7058b2d0c9d Add function to strip pointer type and get down to the actu [...] new b9164bd7687 AArch64: Diagnose OpenMP offloading when SVE types involved. new 3651de6132d AArch64: Add OpenMP target compile error tests new a9bbb60b7ca libgomp: Add AArch64 SVE target tests to libgomp.
The 5 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/config/aarch64/aarch64-sve-builtins.cc | 37 +- gcc/fold-const.cc | 7 + gcc/gimplify.cc | 60 +- gcc/omp-low.cc | 2 +- gcc/poly-int.h | 19 + gcc/target.h | 37 +- .../aarch64/sve}/gomp/gomp.exp | 19 +- .../gcc.target/aarch64/sve/gomp/target-device.c | 201 ++ .../gcc.target/aarch64/sve/gomp/target-link.c | 57 + gcc/testsuite/gcc.target/aarch64/sve/gomp/target.c | 2049 ++++++++++++++++++++ gcc/tree.h | 11 + .../aarch64/aarch64.exp} | 41 +- .../libgomp.c-target/aarch64/firstprivate.c | 127 ++ .../libgomp.c-target/aarch64/lastprivate.c | 169 ++ .../testsuite/libgomp.c-target/aarch64/private.c | 105 + .../testsuite/libgomp.c-target/aarch64/shared.c | 264 +++ .../libgomp.c-target/aarch64/simd-aligned.c | 49 + .../libgomp.c-target/aarch64/simd-nontemporal.c | 49 + .../libgomp.c-target/aarch64/threadprivate.c | 45 + .../testsuite/libgomp.c-target/aarch64/udr-sve.c | 98 + 20 files changed, 3409 insertions(+), 37 deletions(-) copy gcc/testsuite/{gcc.dg => gcc.target/aarch64/sve}/gomp/gomp.exp (75%) create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/gomp/target-device.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/gomp/target-link.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/gomp/target.c copy libgomp/testsuite/{libgomp.graphite/graphite.exp => libgomp.c-target/aarch64/ [...] create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/firstprivate.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/lastprivate.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/private.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/shared.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/simd-aligned.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/simd-nontemporal.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/threadprivate.c create mode 100644 libgomp/testsuite/libgomp.c-target/aarch64/udr-sve.c