aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-03-12 00:16:27 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-03-12 00:16:27 +0000
commitb00f9761b9b9bfa2be6dfd41b3f56a8ae9dba6d0 (patch)
tree4880d02dac177d6e309e0d42937904ae19af20cc /gcc
parent42d9ff3ac845478b7fca20f04ce392204a2d3af9 (diff)
downloadgcc-b00f9761b9b9bfa2be6dfd41b3f56a8ae9dba6d0.zip
gcc-b00f9761b9b9bfa2be6dfd41b3f56a8ae9dba6d0.tar.gz
gcc-b00f9761b9b9bfa2be6dfd41b3f56a8ae9dba6d0.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog31
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/d/ChangeLog21
-rw-r--r--gcc/fortran/ChangeLog5
-rw-r--r--gcc/testsuite/ChangeLog36
5 files changed, 94 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index af0fa20..ac02942 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,34 @@
+2022-03-11 Roger Sayle <roger@nextmovesoftware.com>
+
+ 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 <roger@nextmovesoftware.com>
+ Richard Biener <rguenther@suse.de>
+
+ 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 <rguenther@suse.de>
+
+ 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 <rguenther@suse.de>
+
+ 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 <roger@nextmovesoftware.com>
PR c++/84964
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 95bd2a4..a36cb43 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220311
+20220312
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 58c3a15..1db5bba 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,24 @@
+2022-03-11 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * 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 <ibuclaw@gdcproject.org>
+
+ 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 <ibuclaw@gdcproject.org>
* dmd/MERGE: Merge upstream dmd 423f19b41.
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index f49b8e2..bd5a8e6 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,8 @@
+2022-03-11 Tobias Burnus <tobias@codesourcery.com>
+
+ * 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 <anlauf@gmx.de>
PR fortran/104849
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index eb4dee0..32fb085 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,39 @@
+2022-03-11 Roger Sayle <roger@nextmovesoftware.com>
+
+ 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 <roger@nextmovesoftware.com>
+ Richard Biener <rguenther@suse.de>
+
+ 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 <roger@nextmovesoftware.com>
+
+ 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 <rguenther@suse.de>
+
+ PR tree-optimization/104880
+ * g++.dg/opt/pr104880.cc: New testcase.
+
+2022-03-11 Tobias Burnus <tobias@codesourcery.com>
+
+ * 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 <roger@nextmovesoftware.com>
PR c++/84964