public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-4606] Daily bump.
@ 2022-12-12  0:23 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-12-12  0:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:324e9953400999872a0a57524399d86e6414c149

commit r13-4606-g324e9953400999872a0a57524399d86e6414c149
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon Dec 12 00:22:21 2022 +0000

    Daily bump.

Diff:
---
 contrib/ChangeLog       | 11 +++++++++++
 gcc/ChangeLog           | 21 +++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/d/ChangeLog         | 20 ++++++++++++++++++++
 gcc/fortran/ChangeLog   | 11 +++++++++++
 gcc/testsuite/ChangeLog | 28 ++++++++++++++++++++++++++++
 libphobos/ChangeLog     |  5 +++++
 7 files changed, 97 insertions(+), 1 deletion(-)

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 18f1326a229..ed6cb0f3e4d 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,14 @@
+2022-12-11  Martin Liska  <mliska@suse.cz>
+
+	* check_GNU_style.py: Use newline=\n.
+	* check_GNU_style_lib.py: Simplify.
+	* gcc-changelog/git_commit.py: Fix issues seen
+	Rust patchset.
+	* gcc-changelog/git_email.py: Use newline argument.
+	* gcc-changelog/test_email.py: New test.
+	* gcc-changelog/test_patches.txt: New test.
+	* mklog.py: Use newline argument.
+
 2022-12-10  Thomas Schwinge  <thomas@codesourcery.com>
 
 	* gcc-changelog/git_commit.py (default_changelog_locations): Add
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e2a0facc476..ead66bd73fc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,24 @@
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/89317
+	* match.pd ((p + b) - &p->c -> b - offsetof(c)): New patterns.
+
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	* genmatch.cc (dt_node::gen_kids): Handle ADDR_EXPR in both
+	the GENERIC and GIMPLE op position.
+	(dt_simplify::gen): Capture both GENERIC and GIMPLE op
+	position for ADDR_EXPR and CONSTRUCTOR.
+	* match.pd: Simplify CONSTRUCTOR leaf handling.
+
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106904
+	* tree.h (strip_zero_offset_components): Declare.
+	* tree.cc (strip_zero_offset_components): Define.
+	* tree-vect-data-refs.cc (vect_create_addr_base_for_vector_ref):
+	Strip zero offset components before building the address.
+
 2022-12-10  Jakub Jelinek  <jakub@redhat.com>
 
 	PR tree-optimization/107997
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0706710bce8..a8efd513898 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221211
+20221212
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 74346eab2ef..6eae8090d68 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,23 @@
+2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/108050
+	* decl.cc (DeclVisitor::visit (Import *)): Handle build_import_decl
+	returning a TREE_LIST.
+	* imports.cc (ImportVisitor::visit (OverloadSet *)): New override.
+
+2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* dmd/MERGE: Merge upstream dmd c8ae4adb2e.
+	* typeinfo.cc (check_typeinfo_type): Update for new front-end
+	interface.
+	(TypeInfoVisitor::visit (TypeInfoStructDeclaration *)): Remove warning
+	that toHash() must be declared 'nothrow @safe`.
+
+2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* intrinsics.cc (expand_intrinsic_bsf): Fix comment.
+	(expand_intrinsic_bsr): Use BIT_XOR_EXPR instead of MINUS_EXPR.
+
 2022-11-30  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* Make-lang.in (D_TEXI_FILES): Add d/implement-d.texi.
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index de713a88888..c5f0ea1b86b 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,14 @@
+2022-12-11  Steve Kargl  <kargl@gcc.gnu.org>
+
+	PR fortran/107995
+	* interface.cc (gfc_check_dummy_characteristics): Reject statement
+	function dummy arguments.
+
+2022-12-11  Tobias Burnus  <tobias@codesourcery.com>
+
+	* openmp.cc (gfc_match_omp_context_selector_specification):
+	Remove spurious 's' in an error message.
+
 2022-12-10  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/106911
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c53b4176062..32121382292 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,31 @@
+2022-12-11  Steve Kargl  <kargl@gcc.gnu.org>
+
+	PR fortran/107995
+	* gfortran.dg/pr107995.f90: New test.
+
+2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	PR d/108050
+	* gdc.dg/imports/pr108050/mod1.d: New.
+	* gdc.dg/imports/pr108050/mod2.d: New.
+	* gdc.dg/imports/pr108050/package.d: New.
+	* gdc.dg/pr108050.d: New test.
+
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/89317
+	* gcc.dg/tree-ssa/pr89317.c: New testcase.
+
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	* gcc.dg/tree-ssa/forwprop-3.c: Adjust.
+	* g++.dg/tree-ssa/pr31146-2.C: Likewise.
+
+2022-12-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106904
+	* gcc.dg/Wstringop-overflow-pr106904.c: New testcase.
+
 2022-12-10  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/106911
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index fbcc74a1867..0b9ad4bfff8 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* libdruntime/MERGE: Merge upstream druntime c8ae4adb2e.
+	* src/MERGE: Merge upstream phobos 792c8b7c1.
+
 2022-11-05  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* libdruntime/gcc/simd.d (equalMask): Implement using generics.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-12-12  0:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-12  0:23 [gcc r13-4606] 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).