This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 4bfae8a6f38 Remove Debian from SECURITY.txt new 8aa254d7a5d fortran: Add tests covering inline MINLOC/MAXLOC with DIM [ [...] new a3271e0613a fortran: Inline unmasked integral MINLOC/MAXLOC with DIM [PR90608]
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/fortran/trans-intrinsic.cc | 227 +++++++---- gcc/testsuite/gfortran.dg/ieee/maxloc_nan_2.f90 | 64 +++ gcc/testsuite/gfortran.dg/ieee/minloc_nan_2.f90 | 64 +++ gcc/testsuite/gfortran.dg/maxloc_bounds_1.f90 | 4 +- gcc/testsuite/gfortran.dg/maxloc_bounds_2.f90 | 4 +- gcc/testsuite/gfortran.dg/maxloc_bounds_3.f90 | 4 +- gcc/testsuite/gfortran.dg/maxloc_with_dim_1.f90 | 201 +++++++++ .../gfortran.dg/maxloc_with_dim_and_mask_1.f90 | 452 +++++++++++++++++++++ gcc/testsuite/gfortran.dg/minloc_with_dim_1.f90 | 201 +++++++++ .../gfortran.dg/minloc_with_dim_and_mask_1.f90 | 452 +++++++++++++++++++++ gcc/testsuite/gfortran.dg/minmaxloc_19.f90 | 182 +++++++++ 11 files changed, 1777 insertions(+), 78 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/ieee/maxloc_nan_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/ieee/minloc_nan_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/maxloc_with_dim_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/maxloc_with_dim_and_mask_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/minloc_with_dim_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/minloc_with_dim_and_mask_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/minmaxloc_19.f90