This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2daa92ac4b5 aarch64: Fix {ash[lr],lshr}<mode>3 expanders [PR94488] new 57391ddaf39 Fix PR fortran/93871 and re-implement degree-valued trigono [...]
The 1 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/ChangeLog | 37 ++ gcc/fortran/gfortran.h | 8 + gcc/fortran/intrinsic.c | 193 ++++---- gcc/fortran/intrinsic.h | 12 +- gcc/fortran/iresolve.c | 256 +--------- gcc/fortran/simplify.c | 300 +++++++----- gcc/fortran/trans-intrinsic.c | 196 ++++++++ gcc/fortran/trigd_fe.inc | 50 ++ gcc/testsuite/ChangeLog | 9 + gcc/testsuite/gfortran.dg/dec_math.f90 | 801 +++++++++++++++++++++++-------- gcc/testsuite/gfortran.dg/dec_math_2.f90 | 14 + gcc/testsuite/gfortran.dg/dec_math_3.f90 | 8 + gcc/testsuite/gfortran.dg/dec_math_4.f90 | 8 + gcc/testsuite/gfortran.dg/dec_math_5.f90 | 228 +++++++++ libgfortran/ChangeLog | 9 + libgfortran/Makefile.am | 1 + libgfortran/Makefile.in | 19 +- libgfortran/gfortran.map | 12 + libgfortran/intrinsics/trigd.c | 205 ++++++++ libgfortran/intrinsics/trigd.inc | 464 ++++++++++++++++++ libgfortran/intrinsics/trigd_lib.inc | 147 ++++++ 21 files changed, 2331 insertions(+), 646 deletions(-) create mode 100644 gcc/fortran/trigd_fe.inc create mode 100644 gcc/testsuite/gfortran.dg/dec_math_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/dec_math_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/dec_math_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/dec_math_5.f90 create mode 100644 libgfortran/intrinsics/trigd.c create mode 100644 libgfortran/intrinsics/trigd.inc create mode 100644 libgfortran/intrinsics/trigd_lib.inc