https://gcc.gnu.org/g:8b483cd5521de79c13cf4807fd004d442b9ad9cd

commit r14-9347-g8b483cd5521de79c13cf4807fd004d442b9ad9cd
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Thu Mar 7 00:17:38 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 91 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 19 +++++++++++
 gcc/fortran/ChangeLog   | 16 +++++++++
 gcc/testsuite/ChangeLog | 90 ++++++++++++++++++++++++++++++++++++++++++++++++
 libgfortran/ChangeLog   | 24 +++++++++++++
 libgomp/ChangeLog       |  9 +++++
 7 files changed, 250 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 89da2603913..b9b55d955ea 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,94 @@
+2024-03-06  Uros Bizjak  <ubiz...@gmail.com>
+
+       PR target/114232
+       * config/i386/mmx.md (negv2qi2): Enable for optimize_size instead
+       of optimize_function_for_size_p.  Explictily enable for TARGET_SSE2.
+       (negv2qi SSE reg splitter): Enable for TARGET_SSE2 only.
+       (<plusminus:insn>v2qi3): Enable for optimize_size instead
+       of optimize_function_for_size_p.  Explictily enable for TARGET_SSE2.
+       (<plusminus:insn>v2qi SSE reg splitter): Enable for TARGET_SSE2 only.
+       (<any_shift:insn>v2qi3): Enable for optimize_size instead
+       of optimize_function_for_size_p.
+
+2024-03-06  Robin Dapp  <rd...@ventanamicro.com>
+
+       PR target/114200
+       PR target/114202
+       * config/riscv/vector.md: Use vmv[1248]r.v instead of vmv.v.v.
+
+2024-03-06  Robin Dapp  <rd...@ventanamicro.com>
+
+       * config/riscv/riscv-vector-costs.cc (adjust_stmt_cost): Move...
+       (costs::adjust_stmt_cost): ... to here and add vec_load/vec_store
+       offset handling.
+       (costs::add_stmt_cost): Also adjust cost for statements without
+       stmt_info.
+       * config/riscv/riscv-vector-costs.h: Define zero constant.
+
+2024-03-06  Wilco Dijkstra  <wilco.dijks...@arm.com>
+
+       PR target/113915
+       * config/arm/arm.md (NOCOND): Improve comment.
+       (arm_rev*) Add predicable.
+       * config/arm/arm.cc (arm_final_prescan_insn): Add check for
+       PREDICABLE_YES.
+
+2024-03-06  Jeff Law  <j...@ventanamicro.com>
+
+       PR target/113001
+       PR target/112871
+       * config/riscv/riscv.cc (expand_conditional_move): Do not swap
+       operands when the comparison operand is the same as the false
+       arm for a NE test.
+
+2024-03-06  Uros Bizjak  <ubiz...@gmail.com>
+
+       * config/i386/i386-expand.cc (ix86_expand_move) [TARGET_MACHO]:
+       Eliminate common code and use generic code instead.
+
+2024-03-06  Georg-Johann Lay  <a...@gjlay.de>
+
+       * config/avr/avr.cc (avr_rtx_costs_1) [PLUS+ZERO_EXTEND]: Adjust
+       rtx cost.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114239
+       * tree-vect-loop.cc (vect_get_vect_def): Remove.
+       (vect_create_epilog_for_reduction): The passed in stmt_info
+       should now be the live stmt that produces the scalar reduction
+       result.  Revert PR114192 fix.  Base reduction info off
+       info_for_reduction.  Remove special handling of
+       early-break/peeled, restore original vector def gathering.
+       Make sure to pick the correct exit PHIs.
+       (vectorizable_live_operation): Pass in the proper stmt_info
+       for early break exits.
+
+2024-03-06  Richard Sandiford  <richard.sandif...@arm.com>
+
+       * config/aarch64/aarch64-feature-deps.h (feature_deps::info): Add
+       out-of-class definitions of static constants.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114249
+       * tree-vect-slp.cc (vect_build_slp_instance): Move making
+       a BB reduction lane number even ...
+       (vect_slp_check_for_roots): ... here to avoid leaking
+       pattern defs.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114246
+       * tree-ssa-dse.cc (increment_start_addr): Strip useless
+       type conversions from the adjusted address.
+
+2024-03-06  Jakub Jelinek  <ja...@redhat.com>
+
+       PR rtl-optimization/114190
+       * config/i386/i386-features.cc (rest_of_handle_insert_vzeroupper):
+       Call df_remove_problem for df_note before calling df_analyze.
+
 2024-03-05  Cupertino Miranda  <cupertino.mira...@oracle.com>
            Indu Bhagat  <indu.bha...@oracle.com>
 
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index c7e324d32c0..8b3f474f4cc 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240306
+20240307
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 41e9a44bdbd..fbf3739eb95 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,22 @@
+2024-03-06  Marek Polacek  <pola...@redhat.com>
+
+       PR c++/114114
+       * pt.cc (maybe_instantiate_noexcept): Save/restore
+       cp_unevaluated_operand, c_inhibit_evaluation_warnings, and
+       cp_noexcept_operand around the tsubst_expr call.
+
+2024-03-06  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/113629
+       * pt.cc (type_unification_real): Only use DEDUCE_CONV for the
+       return type of a conversion function.
+
+2024-03-06  Patrick Palka  <ppa...@redhat.com>
+
+       * module.cc (trees_out::get_merge_kind) <case depset::EK_DECL>:
+       Accomodate class-scope DECL_UNINSTANTIATED_TEMPLATE_FRIEND_P
+       TEMPLATE_DECL.  Consolidate IDENTIFIER_ANON_P cases.
+
 2024-03-05  Patrick Palka  <ppa...@redhat.com>
 
        * parser.cc (cp_parser_translation_unit): Relax GMF contents
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 77b8b1599bc..fb11c05186a 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,19 @@
+2024-03-06  Harald Anlauf  <anl...@gmx.de>
+
+       PR fortran/103707
+       PR fortran/106987
+       * arith.cc (is_hard_arith_error): New helper function to determine
+       whether an arithmetic error is "hard" or not.
+       (check_result): Use it.
+       (gfc_arith_divide): Set "Division by zero" only for regular
+       numerators of real and complex divisions.
+       (reduce_unary): Use is_hard_arith_error to determine whether a hard
+       or (recoverable) soft error was encountered.  Terminate immediately
+       on hard error, otherwise remember code of first soft error.
+       (reduce_binary_ac): Likewise.
+       (reduce_binary_ca): Likewise.
+       (reduce_binary_aa): Likewise.
+
 2024-03-01  Harald Anlauf  <anl...@gmx.de>
 
        PR fortran/104819
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 3e20a20fb08..ea1865922e2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,93 @@
+2024-03-06  Robin Dapp  <rd...@ventanamicro.com>
+
+       * gcc.target/riscv/rvv/autovec/pr114200.c: New test.
+       * gcc.target/riscv/rvv/autovec/pr114202.c: New test.
+
+2024-03-06  Robin Dapp  <rd...@ventanamicro.com>
+
+       * gcc.dg/vect/costmodel/riscv/rvv/vse-slp-1.c: New test.
+       * gcc.dg/vect/costmodel/riscv/rvv/vse-slp-2.c: New test.
+
+2024-03-06  Wilco Dijkstra  <wilco.dijks...@arm.com>
+
+       PR target/113915
+       * gcc.target/arm/builtin-bswap-1.c: Fix test to allow conditional
+       execution both for Arm and Thumb-2.
+
+2024-03-06  Jeff Law  <j...@ventanamicro.com>
+
+       PR target/113001
+       PR target/112871
+       * gcc.target/riscv/zicond-ice-3.c: New test.
+       * gcc.target/riscv/zicond-ice-4.c: New test.
+
+2024-03-06  Harald Anlauf  <anl...@gmx.de>
+
+       PR fortran/103707
+       PR fortran/106987
+       * gfortran.dg/pr99350.f90:
+       * gfortran.dg/arithmetic_overflow_3.f90: New test.
+
+2024-03-06  Marek Polacek  <pola...@redhat.com>
+
+       PR c++/114114
+       * g++.dg/cpp0x/noexcept84.C: New test.
+
+2024-03-06  Thomas Schwinge  <tschwi...@baylibre.com>
+
+       * gcc.target/gcn/sram-ecc-3.c: Adjust.
+       * gcc.target/gcn/sram-ecc-4.c: Likewise.
+       * gcc.target/gcn/sram-ecc-7.c: Likewise.
+       * gcc.target/gcn/sram-ecc-8.c: Likewise.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114239
+       * gcc.dg/vect/vect-early-break_122-pr114239.c: New testcase.
+
+2024-03-06  Xi Ruoyao  <xry...@xry111.site>
+
+       * gcc.target/loongarch/vfcmp-f.c: Rewrite to avoid named
+       registers.
+       * gcc.target/loongarch/vfcmp-d.c: Likewise.
+       * gcc.target/loongarch/xvfcmp-f.c: Likewise.
+       * gcc.target/loongarch/xvfcmp-d.c: Likewise.
+
+2024-03-06  Nathaniel Shead  <nathanielosh...@gmail.com>
+
+       PR c++/113629
+       * g++.dg/cpp23/explicit-obj-conv-op.C: New test.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114249
+       * gcc.dg/vect/bb-slp-pr114249.c: New testcase.
+
+2024-03-06  Richard Biener  <rguent...@suse.de>
+
+       PR tree-optimization/114246
+       * gcc.dg/torture/pr114246.c: New testcase.
+
+2024-03-06  Jakub Jelinek  <ja...@redhat.com>
+
+       PR rtl-optimization/114190
+       * gcc.target/i386/avx-pr114190.c: New test.
+
+2024-03-06  Jerry DeLisle  <jvdeli...@gcc.gnu.org>
+
+       PR libfortran/105456
+       * gfortran.dg/pr105456-nmlr.f90: New test.
+       * gfortran.dg/pr105456-nmlw.f90: New test.
+       * gfortran.dg/pr105456-ruf.f90: New test.
+       * gfortran.dg/pr105456-wf.f90: New test.
+       * gfortran.dg/pr105456-wuf.f90: New test.
+
+2024-03-06  Patrick Palka  <ppa...@redhat.com>
+
+       * g++.dg/modules/friend-7.h: New test.
+       * g++.dg/modules/friend-7_a.H: New test.
+       * g++.dg/modules/friend-7_b.C: New test.
+
 2024-03-05  Cupertino Miranda  <cupertino.mira...@oracle.com>
            Indu Bhagat  <indu.bha...@oracle.com>
 
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index c445bda2cf4..e62cc0f3415 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,27 @@
+2024-03-06  Jerry DeLisle  <jvdeli...@gcc.gnu.org>
+
+       PR libfortran/105456
+       * io/io.h (IOMSG_LEN): Moved to here.
+       * io/list_read.c (MSGLEN): Removed MSGLEN.
+       (convert_integer): Changed MSGLEN to IOMSG_LEN.
+       (parse_repeat): Likewise.
+       (read_logical): Likewise.
+       (read_integer): Likewise.
+       (read_character): Likewise.
+       (parse_real): Likewise.
+       (read_complex): Likewise.
+       (read_real): Likewise.
+       (check_type): Likewise.
+       (list_formatted_read_scalar): Adjust to IOMSG_LEN.
+       (nml_read_obj): Add user defined error message.
+       * io/transfer.c (unformatted_read): Add user defined error
+       message.
+       (unformatted_write): Add user defined error message.
+       (formatted_transfer_scalar_read): Add user defined error message.
+       (formatted_transfer_scalar_write): Add user defined error message.
+       * io/write.c (list_formatted_write_scalar): Add user defined error 
message.
+       (nml_write_obj): Add user defined error message.
+
 2024-02-25  Jerry DeLisle  <jvdeli...@gcc.gnu.org>
 
        PR libfortran/105456
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 4ef20efc0b9..ef114eb665f 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,12 @@
+2024-03-06  John David Anglin  <dang...@gcc.gnu.org>
+
+       Revert:
+       2024-02-01  John David Anglin  <dang...@gcc.gnu.org>
+
+       * testsuite/libgomp.c++/loop-3.C: Set num_threads to 50
+       on 32-bit hppa.
+       * testsuite/libgomp.c/omp-loop03.c: Likewise.
+
 2024-03-04  Jakub Jelinek  <ja...@redhat.com>
 
        PR libgomp/114216

Reply via email to