diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-04-30 00:17:28 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-04-30 00:17:28 +0000 |
commit | 42d2e2f57e943c0f79940729d1ef1945388499de (patch) | |
tree | 425cfb6bae1c21da3299d8edc6e537cb7fddfc77 /gcc | |
parent | 93a9c40ea9764773f0288e5b7ba2d8399e670f2c (diff) | |
download | gcc-42d2e2f57e943c0f79940729d1ef1945388499de.zip gcc-42d2e2f57e943c0f79940729d1ef1945388499de.tar.gz gcc-42d2e2f57e943c0f79940729d1ef1945388499de.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 35 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 35 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 35 |
4 files changed, 106 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 61f96e7..3eef06a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,38 @@ +2024-04-29 demin.han <demin.han@starfivetech.com> + + PR target/114506 + * config/riscv/riscv-vector-costs.cc (non_contiguous_memory_access_p): Rename + (need_additional_vector_vars_p): Rename and refine condition + +2024-04-29 Pan Li <pan2.li@intel.com> + + PR target/114885 + * config/riscv/riscv.cc (riscv_legitimize_subreg_const_poly_move): New + func impl to take care of (const_int_poly:TI 8). + (riscv_legitimize_move): Handle subreg is const_int_poly, + +2024-04-29 Christoph Müllner <christoph.muellner@vrull.eu> + + * common/config/riscv/riscv-common.cc: Move ziccamoa, ziccif, + zicclsm, and ziccrse into riscv_zi_subext. + * config/riscv/riscv.opt: Define MASK_ZIC64B for + riscv_ziccmo_subext. + +2024-04-29 Jie Mei <jie.mei@oss.cipunited.com> + + * config/mips/i6400.md (i6400_fpu_minmax): New + define_insn_reservation. + * config/mips/mips.h (ISA_HAS_FMIN_FMAX): Define new macro. + * config/mips/mips.md (UNSPEC_FMIN): New unspec. + (UNSPEC_FMAX): Same as above. + (type): Add fminmax. + (smin<mode>3): Generates MIN.fmt instructions. + (smax<mode>3): Generates MAX.fmt instructions. + (fmin<mode>3): Generates MIN.fmt instructions. + (fmax<mode>3): Generates MAX.fmt instructions. + * config/mips/p6600.md (p6600_fpu_fabs): Include fminmax + type. + 2024-04-28 Aldy Hernandez <aldyh@redhat.com> * tree-ssa-ccp.cc (ccp_finalize): Normalize before calling diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 0f5a44d..d46e1cb 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240429 +20240430 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 2c7133d..a29c4a6 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,38 @@ +2024-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + * expr.cc (check_transformational): Add SELECTED_LOGICAL_KIND + to allowed functions for Fortran 2023. + * gfortran.h (GFC_ISYM_SL_KIND): New. + * gfortran.texi: Mention SELECTED_LOGICAL_KIND. + * intrinsic.cc (add_functions): Add SELECTED_LOGICAL_KIND. + (gfc_intrinsic_func_interface): Allow it in initialization + expressions. + * intrinsic.h (gfc_simplify_selected_logical_kind): New proto. + * intrinsic.texi: Add SELECTED_LOGICAL_KIND. + * simplify.cc (gfc_simplify_selected_logical_kind): New + function. + * trans-decl.cc (gfc_build_intrinsic_function_decls): Initialize + gfor_fndecl_sl_kind. + * trans-intrinsic.cc (gfc_conv_intrinsic_sl_kind): New function. + (gfc_conv_intrinsic_function): Call it for GFC_ISYM_SL_KIND. + * trans.h (gfor_fndecl_sl_kind): New symbol. + +2024-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + * iso-fortran-env.def: Add logical{8,16,32,64} and + real16 named constants. + +2024-04-29 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/114959 + * trans-expr.cc (gfc_trans_class_init_assign): Return NULL_TREE + if the default initializer has all NULL fields. Guard this + by a requirement that the code not be EXEC_INIT_ASSIGN and that + the object be an INTENT_OUT dummy. + * trans-stmt.cc (gfc_trans_allocate): Change the initializer + code for allocate with mold to EXEC_ALLOCATE to allow an + initializer with all NULL fields. + 2024-04-25 Paul Thomas <pault@gcc.gnu.org> PR fortran/93678 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b02179c..dcbd046 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,38 @@ +2024-04-29 Alexandre Oliva <oliva@gnu.org> + + Revert: + 2024-04-28 Alexandre Oliva <oliva@adacore.com> + + * lib/target-supports.exp (check_vect_support_and_set_flags): + Decay to link rather than compile. + +2024-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + * gfortran.dg/selected_logical_kind_1.f90: New test. + * gfortran.dg/selected_logical_kind_2.f90: New test. + * gfortran.dg/selected_logical_kind_3.f90: New test. + * gfortran.dg/selected_logical_kind_4.f90: New test. + +2024-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + * gfortran.dg/iso_fortran_env_8.f90: New test. + * gfortran.dg/iso_fortran_env_9.f90: New test. + +2024-04-29 demin.han <demin.han@starfivetech.com> + + PR target/114506 + * gcc.dg/vect/costmodel/riscv/rvv/pr114506.c: New test. + +2024-04-29 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/114959 + * gfortran.dg/pr114959.f90: New test. + +2024-04-29 Jie Mei <jie.mei@oss.cipunited.com> + + * gcc.target/mips/mips-minmax1.c: New test for MIPS R6. + * gcc.target/mips/mips-minmax2.c: Same as above. + 2024-04-28 liuhongt <hongtao.liu@intel.com> * gcc.target/i386/zero_extendkmask.c: New file. |