This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 8ca07a30724 Daily bump. new fff15bad1ab libgomp: Add Fortran routine support for allocators new 7a9fd18598e rs6000: Refine RTL unroll hook for small loops new 410675cb634 builtins: Avoid useless char/short -> int promotions before [...] new 12d69dbfff9 fix _mm512_{,mask_}cmp*_p[ds]_mask at -O0 [PR96174]
The 4 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/builtins.c | 24 ++++ gcc/config/i386/avx512fintrin.h | 164 +++++++++++----------- gcc/config/rs6000/rs6000.c | 11 +- gcc/testsuite/gcc.target/i386/avx512f-vcmppd-3.c | 4 + gcc/testsuite/gcc.target/i386/avx512f-vcmpps-3.c | 4 + gcc/testsuite/gcc.target/i386/pr96176.c | 13 ++ libgomp/Makefile.in | 1 + libgomp/allocator.c | 3 + libgomp/configure | 11 +- libgomp/configure.ac | 2 + libgomp/fortran.c | 38 +++++ libgomp/icv.c | 2 + libgomp/libgomp.map | 5 + libgomp/omp_lib.f90.in | 138 ++++++++++++++++++ libgomp/omp_lib.h.in | 103 ++++++++++++++ libgomp/testsuite/Makefile.in | 2 + libgomp/testsuite/libgomp.c-c++-common/alloc-2.c | 4 +- libgomp/testsuite/libgomp.fortran/alloc-1.F90 | 169 +++++++++++++++++++++++ libgomp/testsuite/libgomp.fortran/alloc-2.F90 | 3 + libgomp/testsuite/libgomp.fortran/alloc-3.F | 3 + libgomp/testsuite/libgomp.fortran/alloc-4.f90 | 71 ++++++++++ libgomp/testsuite/libgomp.fortran/alloc-5.f90 | 23 +++ 22 files changed, 707 insertions(+), 91 deletions(-) create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-vcmppd-3.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-vcmpps-3.c create mode 100644 gcc/testsuite/gcc.target/i386/pr96176.c create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-1.F90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-2.F90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-3.F create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-4.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-5.f90