mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Daily bump.
This commit is contained in:
parent
93a9c40ea9
commit
42d2e2f57e
@ -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
|
||||
|
@ -1 +1 @@
|
||||
20240429
|
||||
20240430
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
||||
|
||||
* gfortran.map: Add _gfortran_selected_logical_kind.
|
||||
* intrinsics/selected_int_kind.f90: Add SELECTED_LOGICAL_KIND.
|
||||
|
||||
2024-04-12 Ian McInerney <i.mcinerney17@imperial.ac.uk>
|
||||
|
||||
* runtime/error.c (gf_vsnprintf): Fix compilation
|
||||
|
@ -1,3 +1,27 @@
|
||||
2024-04-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
Backported from master:
|
||||
2024-04-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* config/abi/post/i386-solaris/baseline_symbols.txt: Regenerate.
|
||||
* config/abi/post/i386-solaris/amd64/baseline_symbols.txt:
|
||||
Likewise.
|
||||
* config/abi/post/sparc-solaris/baseline_symbols.txt: Likewise.
|
||||
* config/abi/post/sparc-solaris/sparcv9/baseline_symbols.txt:
|
||||
Likewise.
|
||||
|
||||
2024-04-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
Backported from master:
|
||||
2024-04-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* config/abi/post/i386-solaris/baseline_symbols.txt: Regenerate.
|
||||
* config/abi/post/i386-solaris/amd64/baseline_symbols.txt:
|
||||
Likewise.
|
||||
* config/abi/post/sparc-solaris/baseline_symbols.txt: Likewise.
|
||||
* config/abi/post/sparc-solaris/sparcv9/baseline_symbols.txt:
|
||||
Likewise.
|
||||
|
||||
2024-04-26 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/114863
|
||||
|
Loading…
Reference in New Issue
Block a user