This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 20a2c8ace0a i386: Add variable vec_set for 64bit vectors [PR97194] new 967b4653023 Add a target calls hook: TARGET_PUSH_ARGUMENT new 275c736e732 libgomp: Structure element mapping for OpenMP 5.0
The 2 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/calls.c | 6 +- gcc/config/bpf/bpf.h | 3 - gcc/config/cr16/cr16.c | 2 + gcc/config/cr16/cr16.h | 2 - gcc/config/i386/i386.c | 14 + gcc/config/i386/i386.h | 7 +- gcc/config/m32c/m32c.c | 3 + gcc/config/m32c/m32c.h | 1 - gcc/config/nios2/nios2.h | 1 - gcc/config/pru/pru.h | 1 - gcc/defaults.h | 11 +- gcc/doc/tm.texi | 19 +- gcc/doc/tm.texi.in | 9 +- gcc/expr.c | 14 +- gcc/hooks.c | 8 + gcc/hooks.h | 1 + gcc/rtlanal.c | 2 +- gcc/target.def | 14 + gcc/targhooks.c | 12 + gcc/targhooks.h | 1 + .../gcc.target/i386/{pr90773-24.c => pr100704-1.c} | 11 +- .../gcc.target/i386/{pr90773-24.c => pr100704-2.c} | 14 +- gcc/testsuite/gcc.target/i386/pr100704-3.c | 20 + libgomp/hashtab.h | 14 +- libgomp/libgomp.h | 66 ++- libgomp/oacc-mem.c | 19 +- libgomp/oacc-parallel.c | 22 +- libgomp/target.c | 442 ++++++++++++++++----- .../testsuite/libgomp.c-c++-common/refcount-1.c | 61 +++ .../testsuite/libgomp.c-c++-common/struct-elem-1.c | 29 ++ .../testsuite/libgomp.c-c++-common/struct-elem-2.c | 47 +++ .../testsuite/libgomp.c-c++-common/struct-elem-3.c | 69 ++++ .../testsuite/libgomp.c-c++-common/struct-elem-4.c | 56 +++ .../testsuite/libgomp.c-c++-common/struct-elem-5.c | 20 + 34 files changed, 826 insertions(+), 195 deletions(-) copy gcc/testsuite/gcc.target/i386/{pr90773-24.c => pr100704-1.c} (81%) copy gcc/testsuite/gcc.target/i386/{pr90773-24.c => pr100704-2.c} (66%) create mode 100644 gcc/testsuite/gcc.target/i386/pr100704-3.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/refcount-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/struct-elem-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/struct-elem-2.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/struct-elem-3.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/struct-elem-4.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/struct-elem-5.c