diff options
-rw-r--r-- | contrib/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/ChangeLog | 21 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/d/ChangeLog | 20 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 28 | ||||
-rw-r--r-- | libphobos/ChangeLog | 5 |
7 files changed, 97 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 18f1326..ed6cb0f 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 e2a0fac..ead66bd 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 0706710..a8efd51 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221211 +20221212 diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index 74346ea..6eae809 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 de713a8..c5f0ea1 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 c53b417..3212138 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 fbcc74a..0b9ad4b 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. |