diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 41 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/analyzer/ChangeLog | 12 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 27 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 51 |
5 files changed, 132 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d4f5db0..c80bd57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,44 @@ +2021-02-09 Eric Botcazou <ebotcazou@adacore.com> + + PR rtl-optimization/96015 + * reorg.c (skip_consecutive_labels): Minor comment tweaks. + (relax_delay_slots): When deleting a jump to the next active + instruction over a barrier, first delete the barrier if the + jump is the only way to reach the target label. + +2021-02-09 Andre Vieira <andre.simoesdiasvieira@arm.com> + + * config/aarch64/aarch64-cost-tables.h: Add entries for vect.mul. + * config/aarch64/aarch64.c (aarch64_rtx_mult_cost): Use vect.mul for + vector multiplies and vect.alu for SSRA. + * config/arm/aarch-common-protos.h (struct vector_cost_table): Define + vect.mul cost field. + * config/arm/aarch-cost-tables.h: Add entries for vect.mul. + * config/arm/arm.c: Likewise. + +2021-02-09 Richard Biener <rguenther@suse.de> + + PR tree-optimization/98863 + * tree-ssa-sccvn.h (vn_avail::next_undo): Add. + * tree-ssa-sccvn.c (last_pushed_avail): New global. + (rpo_elim::eliminate_push_avail): Chain pushed avails. + (unwind_state::avail_top): Add. + (do_unwind): Rewrite unwinding of avail entries. + (do_rpo_vn): Initialize last_pushed_avail and + avail_top of the undo state. + +2021-02-09 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/99004 + * calls.c (maybe_warn_rdwr_sizes): Change s0 and s1 type from + const char * to char * and free those pointers after use. + +2021-02-09 Richard Biener <rguenther@suse.de> + + PR tree-optimization/99017 + * tree-vect-slp.c (vect_bb_vectorization_profitable_p): Allow + zero vector cost entries. + 2021-02-08 Andre Vieira <andre.simoesdiasvieira@arm.com> PR middle-end/98974 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 69950ec..0f49558 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210209 +20210210 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index f976848..4cc5097 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,15 @@ +2021-02-09 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/98575 + * sm-file.cc (is_file_using_fn_p): Support "_IO_"-prefixed + variants. + +2021-02-09 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/98575 + * store.cc (store::set_value): Treat a pointer written to *UNKNOWN + as having escaped. + 2021-02-02 David Malcolm <dmalcolm@redhat.com> PR analyzer/93355 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b9d49d3..26f514b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,30 @@ +2021-02-09 Nathan Sidwell <nathan@acm.org> + + PR c++/98944 + * module.cc (module_state::is_rooted): Rename to ... + (module_state::has_location): ... here. Adjust callers. + (module_state::read_partitions): Adjust validity check. + Don't overwrite a known location. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/96905 + * pt.c (mark_decl_instantiated): Exit early if consteval. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/98326 + PR c++/20408 + * cp-gimplify.c (simple_empty_class_p): Don't touch an invisiref + parm. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/98994 + PR c++/97566 + * constexpr.c (cxx_eval_store_expression): Only skip empty fields in + RECORD_TYPE. + 2021-02-08 Nathan Sidwell <nathan@acm.org> * decl.c (start_cleanup_fn): Push function into diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b6fb7f3..9ca9d89 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,54 @@ +2021-02-09 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/98575 + * gcc.dg/analyzer/file-1.c (test_5): New. + * gcc.dg/analyzer/file-3.c: New test. + +2021-02-09 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/98575 + * gcc.dg/analyzer/explode-1.c: Remove expected leak warning. + * gcc.dg/analyzer/pr94851-2.c: New test. + * gcc.dg/analyzer/pr98575-1.c: New test. + +2021-02-09 Andre Vieira <andre.simoesdiasvieira@arm.com> + + * gcc.target/aarch64/asimd-mul-to-shl-sub.c: New test. + +2021-02-09 Jonathan Wright <jonathan.wright@arm.com> + + * gcc.target/aarch64/advsimd-intrinsics/vpXXXq.inc: + New test template. + * gcc.target/aarch64/advsimd-intrinsics/vpaddq.c: New test. + +2021-02-09 Nathan Sidwell <nathan@acm.org> + + PR c++/98944 + * g++.dg/modules/pr98944_a.C: New. + * g++.dg/modules/pr98944_b.C: New. + * g++.dg/modules/pr98944_c.C: New. + * g++.dg/modules/pr98944_d.C: New. + +2021-02-09 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/98465 + * g++.dg/warn/Wstringop-overread-1.C: New test. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/96905 + * g++.dg/cpp2a/consteval-expinst1.C: New test. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/98326 + * g++.dg/cpp1y/lambda-generic-empty1.C: New test. + +2021-02-09 Jason Merrill <jason@redhat.com> + + PR c++/98994 + * g++.dg/cpp2a/no_unique_address12.C: New test. + 2021-02-08 Nathan Sidwell <nathan@acm.org> * g++.dg/modules/pr98531-2.h: New. |