public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r15-55] Daily bump.
@ 2024-04-30 0:17 GCC Administrator
0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2024-04-30 0:17 UTC (permalink / raw)
To: gcc-cvs, libstdc++-cvs
https://gcc.gnu.org/g:42d2e2f57e943c0f79940729d1ef1945388499de
commit r15-55-g42d2e2f57e943c0f79940729d1ef1945388499de
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date: Tue Apr 30 00:17:28 2024 +0000
Daily bump.
Diff:
---
gcc/ChangeLog | 35 +++++++++++++++++++++++++++++++++++
gcc/DATESTAMP | 2 +-
gcc/fortran/ChangeLog | 35 +++++++++++++++++++++++++++++++++++
gcc/testsuite/ChangeLog | 35 +++++++++++++++++++++++++++++++++++
libgfortran/ChangeLog | 5 +++++
libstdc++-v3/ChangeLog | 24 ++++++++++++++++++++++++
6 files changed, 135 insertions(+), 1 deletion(-)
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 61f96e7832b..3eef06a517b 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 0f5a44de13f..d46e1cb1feb 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240429
+20240430
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 2c7133db732..a29c4a63ab1 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 b02179c7afb..dcbd0466e79 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.
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index cdd9326d6af..0b669110ea6 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -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
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 3564a2dd5d4..b18e3082162 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-04-30 0:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-30 0:17 [gcc r15-55] Daily bump GCC Administrator
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).