diff --git a/gcc/ChangeLog b/gcc/ChangeLog index af0fa202d55..ac029420bc9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,34 @@ +2022-03-11 Roger Sayle + + PR tree-optimization/98335 + * config/i386/i386.md (peephole2): Eliminate redundant insv. + Combine movl followed by movb. Transform xorl followed by + a suitable movb or movw into the equivalent movz[bw]l. + +2022-03-11 Roger Sayle + Richard Biener + + PR tree-optimization/98335 + * builtins.cc (get_object_alignment_2): Export. + * builtins.h (get_object_alignment_2): Likewise. + * tree-ssa-alias.cc (ao_ref_alignment): New. + * tree-ssa-alias.h (ao_ref_alignment): Declare. + * tree-ssa-dse.cc (compute_trims): Improve logic deciding whether + to align head/tail, writing more bytes but using fewer store insns. + +2022-03-11 Richard Biener + + PR tree-optimization/104880 + * tree-ssa.cc (execute_update_address_taken): Remember if we + optimistically made something not addressable and + prepare to undo it. + +2022-03-11 Richard Biener + + PR target/104762 + * config/i386/i386.cc (ix86_builtin_vectorization_cost): Do not + cost the first lane of SSE pieces as inserts for vec_construct. + 2022-03-10 Roger Sayle PR c++/84964 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 95bd2a4a3e0..a36cb438d63 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220311 +20220312 diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index 58c3a158478..1db5bba0ae0 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,24 @@ +2022-03-11 Iain Buclaw + + * imports.cc (imported_decls): Define. + (class ImportVisitor): Add result_ field. + (ImportVisitor::result): New method. + (ImportVisitor::visit (Module *)): Store decl to result_. + (ImportVisitor::visit (Import *)): Likewise. + (ImportVisitor::visit (AliasDeclaration *)): Don't cache decl in + front-end AST node. + (ImportVisitor::visit (OverDeclaration *)): Likewise. + (ImportVisitor::visit (FuncDeclaration *)): Likewise. + (ImportVisitor::visit (Declaration *)): Likewise. + (build_import_decl): Use imported_decls to cache and lookup built + declarations. + +2022-03-11 Iain Buclaw + + PR translation/104552 + * lang.opt (fdump-cxx-spec=): Fix typo in argument handle. + (fpreview=fixaliasthis): Quote `alias this' as code. + 2022-03-02 Iain Buclaw * dmd/MERGE: Merge upstream dmd 423f19b41. diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index f49b8e2de9b..bd5a8e601ae 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2022-03-11 Tobias Burnus + + * trans-openmp.cc (gfc_trans_omp_clauses, gfc_omp_finish_clause): + Obtain size for mapping only if allocatable array is allocated. + 2022-03-09 Harald Anlauf PR fortran/104849 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index eb4dee06618..32fb0850a4d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,39 @@ +2022-03-11 Roger Sayle + + PR tree-optimization/98335 + * g++.target/i386/pr98335.C: New test case. + * gcc.target/i386/pr98335.c: New test case. + +2022-03-11 Roger Sayle + Richard Biener + + PR tree-optimization/98335 + * g++.dg/pr98335.C: New test case. + * gcc.dg/pr86010.c: New test case. + * gcc.dg/pr86010-2.c: New test case. + +2022-03-11 Roger Sayle + + PR c++/84964 + * g++.dg/other/pr84964.C: Tweak test to check for the ICE, not for + the (target-dependent) sorry. + +2022-03-11 Richard Biener + + PR tree-optimization/104880 + * g++.dg/opt/pr104880.cc: New testcase. + +2022-03-11 Tobias Burnus + + * gfortran.dg/goacc/array-with-dt-1.f90: Update/add comments; + remove dg-warning for 'is used uninitialized'. + * gfortran.dg/goacc/pr93464.f90: Likewise. + * gfortran.dg/goacc/array-with-dt-1a.f90: New; copied from + gfortran.dg/goacc/array-with-dt-1.f90 but run with -O0. Update + dg-warning for 'may be used uninitialized'. + * gfortran.dg/goacc/pr93464-2.f90: Likewise; copied from + gfortran.dg/goacc/pr93464.f90. + 2022-03-10 Roger Sayle PR c++/84964 diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index a78d6decd79..9cb1abb92df 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,11 @@ +2022-03-11 Rainer Orth + + PR d/103528 + * configure.ac : Remove + gas requirement. + * configure: Regenerate. + * configure.tgt (sparc*-*-solaris2.11*): Mark supported. + 2022-03-02 Iain Buclaw * libdruntime/MERGE: Merge upstream druntime 100a608c. diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog index c2e17d0a00f..b7f3f3ea3c8 100644 --- a/lto-plugin/ChangeLog +++ b/lto-plugin/ChangeLog @@ -1,3 +1,8 @@ +2022-03-11 Tobias Burnus + + * lto-plugin.c (all_symbols_read_handler): With -save-temps, use + link_output_name for -foffload-objects's file name, if available. + 2022-03-01 Martin Liska * lto-plugin.c (process_offload_section): Use a linker as many