public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: GCC Administrator <gccadmin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r13-5975] Daily bump.
Date: Tue, 14 Feb 2023 00:18:14 +0000 (GMT)	[thread overview]
Message-ID: <20230214001814.413043858D1E@sourceware.org> (raw)

https://gcc.gnu.org/g:ae7197818d6ed6123f1a294efa4ed9b3014d7ff5

commit r13-5975-gae7197818d6ed6123f1a294efa4ed9b3014d7ff5
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Feb 14 00:17:33 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 92 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/fortran/ChangeLog   | 13 +++++++
 gcc/testsuite/ChangeLog | 49 ++++++++++++++++++++++++++
 libgcc/ChangeLog        |  5 +++
 libgm2/ChangeLog        |  4 +++
 libphobos/ChangeLog     |  5 +++
 libstdc++-v3/ChangeLog  |  6 ++++
 8 files changed, 175 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9f431c19e3f..53b395667c1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,95 @@
+2023-02-13  Richard Sandiford  <richard.sandiford@arm.com>
+
+	PR rtl-optimization/108681
+	* lra-spills.cc (lra_final_code_change): Extend subreg replacement
+	code to handle bare uses and clobbers.
+
+2023-02-13  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+	* ira.cc (ira_update_equiv_info_by_shuffle_insn): Clear equiv
+	caller_save_p flag when clearing defined_p flag.
+	(setup_reg_equiv): Ditto.
+	* lra-constraints.cc (lra_constraints): Ditto.
+
+2023-02-13  Uroš Bizjak  <ubizjak@gmail.com>
+
+	PR target/108516
+	* config/i386/predicates.md (extr_register_operand):
+	New special predicate.
+	* config/i386/i386.md (*extv<mode>): Use extr_register_operand
+	as operand 1 predicate.
+	(*exzv<mode>): Ditto.
+	(*extendqi<SWI24:mode>_ext_1): New insn pattern.
+
+2023-02-13  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/28614
+	* tree-ssa-sccvn.cc (can_track_predicate_on_edge): Avoid
+	walking all edges in most cases.
+	(vn_nary_op_insert_pieces_predicated): Avoid repeated
+	calls to can_track_predicate_on_edge unless checking is
+	enabled.
+	(process_bb): Instead call it once here for each edge
+	we register possibly multiple predicates on.
+
+2023-02-13  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108691
+	* tree-cfg.cc (notice_special_calls): When the CFG is built
+	honor gimple_call_ctrl_altering_p.
+	* cfgexpand.cc (expand_call_stmt): Clear cfun->calls_setjmp
+	temporarily if the call is not control-altering.
+	* calls.cc (emit_call_1): Do not add REG_SETJMP if
+	cfun->calls_setjmp is not set.  Do not alter cfun->calls_setjmp.
+
+2023-02-13  Stefan Schulze Frielinghaus  <stefansf@linux.ibm.com>
+
+	PR target/108102
+	* config/s390/s390.cc (s390_bb_fallthru_entry_likely): Remove.
+	(struct s390_sched_state): Initialise to zero.
+	(s390_sched_variable_issue): For better debuggability also emit
+	the current side.
+	(s390_sched_init): Unconditionally reset scheduler state.
+
+2023-02-13  Richard Sandiford  <richard.sandiford@arm.com>
+
+	* ifcvt.h (noce_if_info::cond_inverted): New field.
+	* ifcvt.cc (cond_move_convert_if_block): Swap the then and else
+	values when cond_inverted is true.
+	(noce_find_if_block): Allow the condition to be inverted when
+	handling conditional moves.
+
+2023-02-13  Stefan Schulze Frielinghaus  <stefansf@linux.ibm.com>
+
+	* config/s390/predicates.md (execute_operation): Use
+	constrain_operands instead of extract_constrain_insn in order to
+	determine wheter there exists a valid alternative.
+
+2023-02-13  Claudiu Zissulescu  <claziss@gmail.com>
+
+	* common/config/arc/arc-common.cc (arc_option_optimization_table):
+	Remove millicode from list.
+
+2023-02-13  Martin Liska  <mliska@suse.cz>
+
+	* doc/invoke.texi: Document ira-simple-lra-insn-threshold.
+
+2023-02-13  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106722
+	* tree-ssa-dce.cc (mark_last_stmt_necessary): Return
+	whether we marked a stmt.
+	(mark_control_dependent_edges_necessary): When
+	mark_last_stmt_necessary didn't mark any stmt make sure
+	to mark its control dependent edges.
+	(propagate_necessity): Likewise.
+
+2023-02-13  Kito Cheng  <kito.cheng@sifive.com>
+
+	* config/riscv/riscv.h (RISCV_DWARF_VLENB): New.
+	(DWARF_FRAME_REGISTERS): New.
+	(DWARF_REG_TO_UNWIND_COLUMN): New.
+
 2023-02-12  Gerald Pfeifer  <gerald@pfeifer.com>
 
 	* doc/sourcebuild.texi: Remove (broken) direct reference to
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index d3e275017e1..fe9ab157aec 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230213
+20230214
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index f0cca6ee20b..ca193a597c8 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,16 @@
+2023-02-13  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/103475
+	* primary.cc (gfc_expr_attr): Avoid NULL pointer dereference for
+	invalid use of CLASS variable.
+
+2023-02-13  Rimvydas Jasinskas  <rimvydas.jas@gmail.com>
+
+	* decl.cc: Add EXT_ATTR_NOINLINE, EXT_ATTR_NORETURN, EXT_ATTR_WEAK.
+	* gfortran.h (ext_attr_id_t): Ditto.
+	* gfortran.texi (GCC$ ATTRIBUTES): Document them.
+	* trans-decl.cc (build_function_decl): Apply them.
+
 2023-02-09  Harald Anlauf  <anlauf@gmx.de>
 	    Steven G. Kargl  <kargl@gcc.gnu.org>
 
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8455d280b8b..900a3eb4ef8 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,52 @@
+2023-02-13  Richard Sandiford  <richard.sandiford@arm.com>
+
+	PR rtl-optimization/108681
+	* gcc.target/aarch64/pr108681.c: New test.
+
+2023-02-13  Vladimir N. Makarov  <vmakarov@redhat.com>
+
+	* gcc.target/i386/pr108774.c: New.
+
+2023-02-13  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/103475
+	* gfortran.dg/pr103475.f90: New test.
+
+2023-02-13  Uroš Bizjak  <ubizjak@gmail.com>
+
+	PR target/108516
+	* gcc.target/i386/pr108516-1.c: New test.
+	* gcc.target/i386/pr108516-2.c: Ditto.
+
+2023-02-13  Rimvydas Jasinskas  <rimvydas.jas@gmail.com>
+
+	* gfortran.dg/noinline.f90: New test.
+	* gfortran.dg/noreturn-1.f90: New test.
+	* gfortran.dg/noreturn-2.f90: New test.
+	* gfortran.dg/noreturn-3.f90: New test.
+	* gfortran.dg/noreturn-4.f90: New test.
+	* gfortran.dg/noreturn-5.f90: New test.
+	* gfortran.dg/weak-1.f90: New test.
+
+2023-02-13  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108691
+	* gcc.dg/pr108691.c: New testcase.
+
+2023-02-13  Jonathan Yong  <10walls@gmail.com>
+
+	* gcc.dg/Wbuiltin-declaration-mismatch-7.c: Use (long )*
+	regex pattern to allow long long instead of just long.
+
+2023-02-13  Claudiu Zissulescu  <claziss@gmail.com>
+
+	* gcc.target/arc/milli-1.c: Update test.
+
+2023-02-13  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106722
+	* gcc.dg/torture/pr108737.c: New testcase.
+
 2023-02-12  Ju-Zhe Zhong  <juzhe.zhong@rivai.ai>
 
 	* g++.target/riscv/rvv/base/vaadd_vv-1.C: New test.
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 12eefc0ebc4..97f34420942 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,8 @@
+2023-02-13  Kito Cheng  <kito.cheng@sifive.com>
+
+	* config.host (riscv*-*-*): Add config/riscv/value-unwind.h.
+	* config/riscv/value-unwind.h: New.
+
 2023-02-03  Christophe Lyon  <christophe.lyon@arm.com>
 
 	* config/arm/pr-support.c (__gnu_unwind_execute): Use
diff --git a/libgm2/ChangeLog b/libgm2/ChangeLog
index 2df1f503cd4..c7c2c3a7091 100644
--- a/libgm2/ChangeLog
+++ b/libgm2/ChangeLog
@@ -1,3 +1,7 @@
+2023-02-13  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* libm2iso/RTco.cc (tprintf): Replace definition.
+
 2023-02-01  Gaius Mulley  <gaiusmod2@gmail.com>
 
 	PR modula2/108612
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 65ae39ed6eb..93935bb11d5 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2023-02-13  Lorenzo Salvadore  <developer@lorenzosalvadore.it>
+
+	PR d/107469
+	* libdruntime/core/sys/freebsd/config.d: Update __FreeBSD_version.
+
 2023-01-17  Martin Liska  <mliska@suse.cz>
 
 	* Makefile.in: Regenerate.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 3574005959b..2e48684f5f4 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2023-02-13  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* doc/xml/manual/policy_data_structures_biblio.xml: Adjust
+	"The Component Object Model" reference.
+	* doc/html/manual/policy_data_structures.html: Regenerate.
+
 2023-02-12  Gerald Pfeifer  <gerald@pfeifer.com>
 
 	* doc/xml/manual/containers.xml: Tweak a link to N1780

                 reply	other threads:[~2023-02-14  0:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230214001814.413043858D1E@sourceware.org \
    --to=gccadmin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).