]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 12 Dec 2022 00:22:21 +0000 (00:22 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 12 Dec 2022 00:22:21 +0000 (00:22 +0000)
contrib/ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/d/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libphobos/ChangeLog

index 18f1326a229bc0c2757ce3117df8457889fb5ca4..ed6cb0f3e4d1767d636eec4aef97f6d973222636 100644 (file)
@@ -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
index e2a0facc476dc41f031475a93fb6f2eed8d8b0c0..ead66bd73fcc231b127c9ca06745ec6fae2b8e36 100644 (file)
@@ -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
index 0706710bce803c97f6d2a0fe7901109c2fc73c6c..a8efd513898bd2ff3eb9e19b7b8d05aeb558d886 100644 (file)
@@ -1 +1 @@
-20221211
+20221212
index 74346eab2ef265b2c83550cf865e484b2616c486..6eae8090d68c8cbc946ef26760d8c4e47f345a0d 100644 (file)
@@ -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.
index de713a88888ddb036b8362e6b93f388b5197e233..c5f0ea1b86b5acd7de122aed08b9717c15c7b8e0 100644 (file)
@@ -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
index c53b4176062bd12a43736242bb2de1812a5646af..321213822922959d63fe8ec661f844045948efbf 100644 (file)
@@ -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
index fbcc74a1867ce17cbbeed026954016936e204cfb..0b9ad4bfff8c96079c1febdabff2eeaa0b99055b 100644 (file)
@@ -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.