This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 8748cd7e4e2 [vect]Make vect-epilogues-nomask=1 default new 6fbd6da5040 PR middle-end/92231 * tree.h (fndecl_built_in_p): Use fnd [...] new 6c8fbc5a881 Fortran] PR92277 - Fix assumed-rank array with bind(C) new 4bd5af52b36 * configure.ac: Compute and substitute omp_device_properti [...] new 02b7dabce4f Fortran] PR92284 – gfc_desc_to_cfi_desc fixes
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/ChangeLog | 51 ++++ gcc/Makefile.in | 35 ++- gcc/config/i386/i386-options.c | 256 +++++++++++++-------- gcc/config/i386/i386-options.h | 3 + gcc/config/i386/i386.c | 9 +- gcc/config/i386/t-intelmic | 7 + gcc/config/nvptx/nvptx.c | 29 +++ gcc/config/nvptx/t-nvptx | 5 + gcc/configure | 17 +- gcc/configure.ac | 11 + gcc/doc/tm.texi | 7 + gcc/doc/tm.texi.in | 2 + gcc/fortran/ChangeLog | 12 + gcc/fortran/trans-expr.c | 19 +- gcc/gimple-fold.c | 1 + gcc/lto/ChangeLog | 6 + gcc/lto/lto-lang.c | 3 +- gcc/omp-general.c | 214 ++++++++++++++--- gcc/target.def | 15 ++ gcc/target.h | 7 + gcc/testsuite/ChangeLog | 23 ++ .../c-c++-common/gomp/declare-variant-10.c | 77 +++++++ .../c-c++-common/gomp/declare-variant-9.c | 63 +++++ gcc/testsuite/gcc.c-torture/compile/pr92231.c | 9 + gcc/testsuite/gfortran.dg/bind-c-intent-out.f90 | 5 +- .../gfortran.dg/bind_c_array_params_3.f90 | 39 ++++ .../gfortran.dg/bind_c_array_params_3_aux.c | 27 +++ gcc/testsuite/gfortran.dg/pr92277.f90 | 32 +++ gcc/tree.c | 3 +- gcc/tree.h | 6 +- libgfortran/ChangeLog | 8 +- libgfortran/runtime/ISO_Fortran_binding.c | 37 +-- 32 files changed, 869 insertions(+), 169 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-10.c create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-9.c create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr92231.c create mode 100644 gcc/testsuite/gfortran.dg/bind_c_array_params_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_array_params_3_aux.c create mode 100644 gcc/testsuite/gfortran.dg/pr92277.f90