Daily bump.

This commit is contained in:
GCC Administrator 2022-12-12 00:22:21 +00:00
parent 8f72249ff4
commit 324e995340
7 changed files with 97 additions and 1 deletions

View 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

View 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

View file

@ -1 +1 @@
20221211
20221212

View 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.

View 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

View 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

View 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.