summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2020-05-30 00:16:27 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2020-05-30 00:16:27 +0000
commit885ef72f270cf8e58066681e70fb05d846ac426e (patch)
treeb41daa02cd6d17f395f57e378244619f431d642f
parentee969a36d9887e1a3230fe3de2d398fd6c6dac49 (diff)
Daily bump.
-rw-r--r--config/ChangeLog6
-rw-r--r--contrib/ChangeLog24
-rw-r--r--gcc/ChangeLog146
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog43
-rw-r--r--gcc/fortran/ChangeLog8
-rw-r--r--gcc/testsuite/ChangeLog102
-rw-r--r--libatomic/ChangeLog5
-rw-r--r--libbacktrace/ChangeLog5
-rw-r--r--libcc1/ChangeLog5
-rw-r--r--libcpp/ChangeLog5
-rw-r--r--libdecnumber/ChangeLog5
-rw-r--r--libgcc/ChangeLog5
-rw-r--r--libgfortran/ChangeLog16
-rw-r--r--libgomp/ChangeLog5
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libitm/ChangeLog5
-rw-r--r--libobjc/ChangeLog5
-rw-r--r--libphobos/ChangeLog5
-rw-r--r--libquadmath/ChangeLog5
-rw-r--r--libsanitizer/ChangeLog10
-rw-r--r--libssp/ChangeLog5
-rw-r--r--libstdc++-v3/ChangeLog12
-rw-r--r--libvtv/ChangeLog5
-rw-r--r--lto-plugin/ChangeLog5
-rw-r--r--maintainer-scripts/ChangeLog14
-rw-r--r--zlib/ChangeLog5
27 files changed, 462 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 1a260933ef3..b7c702b50a5 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,9 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * cet.m4: Replace save_CFLAGS and save_LDFLAGS with
+ cet_save_CFLAGS and cet_save_LDFLAGS.
+
2020-05-18 Jason Merrill <jason@redhat.com>
* ax_cxx_compile_stdcxx.m4: Import from autoconf archive with
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 39c23eeaf0b..7e9df6bdae5 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,27 @@
+2020-05-29 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * config-list.mk (LIST): Remove rs6000-ibm-aix5.3.0.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * gcc-changelog/git_commit.py: Find empty change descriptions.
+ * gcc-changelog/test_email.py: New test.
+ * gcc-changelog/test_patches.txt: New patch that tests that.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * git-backport.py: The script did 'git co HEAD~' when
+ there was no modified ChangeLog file in a successful
+ git cherry pick.
+ Run cherry-pick --continue without editor.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * gcc-changelog/git_commit.py: Properly
+ handle duplicite authors.
+ * gcc-changelog/test_email.py: New test.
+ * gcc-changelog/test_patches.txt: New patch.
+
2020-05-28 Pierre-Marie de Rodat <derodat@adacore.com>
* gcc-changelog/git_email.py (GitEmail.__init__): Interpret file
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4fc37369d39..c4d8bc25457 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,149 @@
+2020-05-29 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * config/rs6000/altivec.md (altivec_vmrghw_direct): Prefer VSX form.
+ (altivec_vmrglw_direct): Ditto.
+ (altivec_vperm_<mode>_direct): Ditto.
+ (altivec_vperm_v8hiv16qi): Ditto.
+ (*altivec_vperm_<mode>_uns_internal): Ditto.
+ (*altivec_vpermr_<mode>_internal): Ditto.
+ (vperm_v8hiv4si): Ditto.
+ (vperm_v16qiv8hi): Ditto.
+
+2020-05-29 Jan Hubicka <jh@suse.cz>
+
+ * lto-streamer-in.c (streamer_read_chain): Move here from
+ tree-streamer-in.c.
+ (stream_read_tree_ref): New.
+ (lto_input_tree_1): Simplify.
+ * lto-streamer-out.c (stream_write_tree_ref): New.
+ (lto_write_tree_1): Simplify.
+ (lto_output_tree_1): Simplify.
+ (DFS::DFS_write_tree): Simplify.
+ (streamer_write_chain): Move here from tree-stremaer-out.c.
+ * lto-streamer.h (lto_output_tree_ref): Update prototype.
+ (stream_read_tree_ref): Declare
+ (stream_write_tree_ref): Declare
+ * tree-streamer-in.c (streamer_read_chain): Update to use
+ stream_read_tree_ref.
+ (lto_input_ts_common_tree_pointers): Likewise.
+ (lto_input_ts_vector_tree_pointers): Likewise.
+ (lto_input_ts_poly_tree_pointers): Likewise.
+ (lto_input_ts_complex_tree_pointers): Likewise.
+ (lto_input_ts_decl_minimal_tree_pointers): Likewise.
+ (lto_input_ts_decl_common_tree_pointers): Likewise.
+ (lto_input_ts_decl_with_vis_tree_pointers): Likewise.
+ (lto_input_ts_field_decl_tree_pointers): Likewise.
+ (lto_input_ts_function_decl_tree_pointers): Likewise.
+ (lto_input_ts_type_common_tree_pointers): Likewise.
+ (lto_input_ts_type_non_common_tree_pointers): Likewise.
+ (lto_input_ts_list_tree_pointers): Likewise.
+ (lto_input_ts_vec_tree_pointers): Likewise.
+ (lto_input_ts_exp_tree_pointers): Likewise.
+ (lto_input_ts_block_tree_pointers): Likewise.
+ (lto_input_ts_binfo_tree_pointers): Likewise.
+ (lto_input_ts_constructor_tree_pointers): Likewise.
+ (lto_input_ts_omp_clause_tree_pointers): Likewise.
+ * tree-streamer-out.c (streamer_write_chain): Update to use
+ stream_write_tree_ref.
+ (write_ts_common_tree_pointers): Likewise.
+ (write_ts_vector_tree_pointers): Likewise.
+ (write_ts_poly_tree_pointers): Likewise.
+ (write_ts_complex_tree_pointers): Likewise.
+ (write_ts_decl_minimal_tree_pointers): Likewise.
+ (write_ts_decl_common_tree_pointers): Likewise.
+ (write_ts_decl_non_common_tree_pointers): Likewise.
+ (write_ts_decl_with_vis_tree_pointers): Likewise.
+ (write_ts_field_decl_tree_pointers): Likewise.
+ (write_ts_function_decl_tree_pointers): Likewise.
+ (write_ts_type_common_tree_pointers): Likewise.
+ (write_ts_type_non_common_tree_pointers): Likewise.
+ (write_ts_list_tree_pointers): Likewise.
+ (write_ts_vec_tree_pointers): Likewise.
+ (write_ts_exp_tree_pointers): Likewise.
+ (write_ts_block_tree_pointers): Likewise.
+ (write_ts_binfo_tree_pointers): Likewise.
+ (write_ts_constructor_tree_pointers): Likewise.
+ (write_ts_omp_clause_tree_pointers): Likewise.
+ (streamer_write_tree_body): Likewise.
+ (streamer_write_integer_cst): Likewise.
+ * tree-streamer.h (streamer_read_chain):Declare.
+ (streamer_write_chain):Declare.
+ (streamer_write_tree_body): Update prototype.
+ (streamer_write_integer_cst): Update prototype.
+
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
+2020-05-29 Andrew Stubbs <ams@codesourcery.com>
+
+ * config/gcn/gcn-valu.md (add<mode>3_vcc_zext_dup): Add early clobber.
+ (add<mode>3_vcc_zext_dup_exec): Likewise.
+ (add<mode>3_vcc_zext_dup2): Likewise.
+ (add<mode>3_vcc_zext_dup2_exec): Likewise.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95272
+ * tree-vectorizer.h (_slp_tree::representative): Add.
+ (SLP_TREE_REPRESENTATIVE): Likewise.
+ * tree-vect-loop.c (vectorizable_reduction): Adjust SLP
+ node gathering.
+ (vectorizable_live_operation): Use the representative to
+ attach the reduction info to.
+ * tree-vect-slp.c (_slp_tree::_slp_tree): Initialize
+ SLP_TREE_REPRESENTATIVE.
+ (vect_create_new_slp_node): Likewise.
+ (slp_copy_subtree): Copy it.
+ (vect_slp_rearrange_stmts): Re-arrange even COND_EXPR stmts.
+ (vect_slp_analyze_node_operations_1): Pass the representative
+ to vect_analyze_stmt.
+ (vect_schedule_slp_instance): Pass the representative to
+ vect_transform_stmt.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95356
+ * tree-vect-stmts.c (vectorizable_shift): Do in-place SLP
+ node hacking during analysis.
+
+2020-05-29 Jan Hubicka <hubicka@ucw.cz>
+
+ PR lto/95362
+ * lto-streamer-out.c (lto_output_tree): Disable redundant streaming.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95403
+ * tree-vect-stmts.c (vect_init_vector_1): Guard against NULL
+ stmt_vinfo.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/95315
+ * omp-general.c (omp_resolve_declare_variant): Fix up addition of
+ declare variant cgraph node removal callback.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/95052
+ * expr.c (store_expr): If expr_size is constant and significantly
+ larger than TREE_STRING_LENGTH, set temp to just the
+ TREE_STRING_LENGTH portion of the STRING_CST.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95393
+ * tree-ssa-phiopt.c (minmax_replacement): Use gimple_build
+ to build the min/max expression so we simplify cases like
+ MAX(0, s) immediately.
+
+2020-05-29 Joe Ramsay <joe.ramsay@arm.com>
+
+ * config/aarch64/aarch64-sve.md (<LOGICAL:optab><mode>3): Add support
+ for unpacked EOR, ORR, AND.
+
2020-05-28 Nicolas Bértolo <nicolasbertolo@gmail.com>
* Makefile.in: don't look for libiberty in the "pic" subdirectory
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 065a3b85610..cadcec3f8ad 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20200529
+20200530
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index a83f991d8e2..95fb2b447ed 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,46 @@
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+ Jason Merrill <jason@redhat.com>
+
+ PR c++/95181
+ * class.c (add_method): Let special member function templates
+ coexist if they are not equivalently constrained, or in a class
+ template.
+
+2020-05-29 Jason Merrill <jason@redhat.com>
+
+ PR c++/95371
+ * pt.c (process_template_parm): Set DECL_TEMPLATE_INFO
+ on the DECL_TEMPLATE_RESULT.
+
+2020-05-29 Marek Polacek <polacek@redhat.com>
+
+ PR c++/95344
+ * cp-gimplify.c (cp_fold) <case MODIFY_EXPR>: Don't set
+ TREE_THIS_VOLATILE here.
+ (cp_fold): Set it here along with TREE_NO_WARNING.
+
+2020-05-29 Jason Merrill <jason@redhat.com>
+
+ PR c++/95311
+ PR c++/95221
+ * class.c (build_vfn_ref): Don't fold the INDIRECT_REF.
+
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/92652
+ PR c++/93698
+ PR c++/94128
+ * parser.c (cp_parser_requires_clause_expression): Temporarily
+ increment processing_template_decl only if it is 0.
+ (cp_parser_constraint_expression): Likewise.
+ (cp_parser_requires_expression): Likewise.
+
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/95241
+ * constexpr.c (get_or_insert_ctor_field): Add limited support
+ for RANGE_EXPR index lookups.
+
2020-05-28 Jakub Jelinek <jakub@redhat.com>
PR c++/95328
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 147196a6738..127bd2a0297 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,11 @@
+2020-05-29 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/95090
+ * class.c (get_unique_type_string): Enlarge temporary for
+ name-mangling. Use strncpy to prevent buffer overrun.
+ (get_unique_hashed_string): Enlarge temporary.
+ (gfc_hash_value): Enlarge temporary for name-mangling.
+
2020-05-28 Harald Anlauf <anlauf@gmx.de>
PR fortran/95373
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8111a852305..48354eb0923 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,105 @@
+2020-05-29 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * gcc.target/powerpc/vsx-vector-6.p9.c: Allow xxperm as perm as well.
+
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+ Jason Merrill <jason@redhat.com>
+
+ PR c++/95181
+ * g++.dg/concepts/pr95181.C: New test.
+ * g++.dg/concepts/pr95181-2.C: New test.
+
+2020-05-29 Jason Merrill <jason@redhat.com>
+
+ PR c++/95371
+ * g++.dg/cpp2a/concepts-ttp1.C: New test.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR libfortran/95390
+ * gfortran.dg/findloc_8.f90: New test.
+
+2020-05-29 Marek Polacek <polacek@redhat.com>
+
+ PR c++/95344
+ * c-c++-common/Wparentheses-2.c: New test.
+
+2020-05-29 Jason Merrill <jason@redhat.com>
+
+ PR c++/95311
+ * g++.dg/ubsan/vptr-16.C: New test.
+
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/92652
+ PR c++/93698
+ PR c++/94128
+ * g++.dg/cpp2a/concepts-lambda8.C: New test.
+ * g++.dg/cpp2a/concepts-lambda9.C: New test.
+ * g++.dg/cpp2a/concepts-lambda10.C: New test.
+
+2020-05-29 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/95241
+ * g++.dg/cpp0x/constexpr-array25.C: New test.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95272
+ * gcc.dg/vect/pr95272.c: New testcase.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95403
+ * gfortran.dg/vect/pr95403.f: New testcase.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/95315
+ * gcc.dg/gomp/pr95315-2.c: New test.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/95052
+ * gcc.target/i386/pr95052.c: New test.
+
+2020-05-29 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/95393
+ * gcc.dg/tree-ssa/phi-opt-21.c: New testcase.
+ * g++.dg/vect/slp-pr87105.cc: Adjust.
+
+2020-05-29 Joe Ramsay <joe.ramsay@arm.com>
+
+ * gcc.target/aarch64/sve/load_const_offset_2.c: Force using packed
+ vectors.
+ * gcc.target/aarch64/sve/logical_unpacked_and_1.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_2.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_3.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_4.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_5.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_6.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_and_7.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_1.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_2.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_3.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_4.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_5.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_6.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_eor_7.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_1.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_2.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_3.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_4.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_5.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_6.c: New test.
+ * gcc.target/aarch64/sve/logical_unpacked_orr_7.c: New test.
+ * gcc.target/aarch64/sve/scatter_store_6.c: Force using packed vectors.
+ * gcc.target/aarch64/sve/scatter_store_7.c: Force using packed vectors.
+ * gcc.target/aarch64/sve/strided_load_3.c: Force using packed vectors.
+ * gcc.target/aarch64/sve/strided_store_3.c: Force using packed vectors.
+ * gcc.target/aarch64/sve/unpack_signed_1.c: Force using packed vectors.
+
2020-05-28 Jakub Jelinek <jakub@redhat.com>
PR c++/95328
diff --git a/libatomic/ChangeLog b/libatomic/ChangeLog
index ddfce8d5552..0a26f3ee80e 100644
--- a/libatomic/ChangeLog
+++ b/libatomic/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog
index 9f45d72f4fe..cd33dc26d40 100644
--- a/libbacktrace/ChangeLog
+++ b/libbacktrace/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libcc1/ChangeLog b/libcc1/ChangeLog
index 24d324629e9..e5a2e56508e 100644
--- a/libcc1/ChangeLog
+++ b/libcc1/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-14 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 4c2eee4411d..6e16145b669 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-23 David Edelsohn <dje.gcc@gmail.com>
* Makefile.in (AR): Substitute @AR@.
diff --git a/libdecnumber/ChangeLog b/libdecnumber/ChangeLog
index d9d276784f7..2a8a540d187 100644
--- a/libdecnumber/ChangeLog
+++ b/libdecnumber/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-23 David Edelsohn <dje.gcc@gmail.com>
* Makefile.in (AR): Substitute @AR@.
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 06e7986cdf8..81ff41fc02c 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-28 Dong JianQiang <dongjianqiang2@huawei.com>
PR gcov-profile/95332
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 9ab019f5714..549bd05b1f1 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,19 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
+2020-05-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR libfortran/95390
+ * Makefile.am (i_findloc0_c): Add findloc0_i10.c.
+ (i_findloc1_c): Add findloc1_i10.c.
+ * gfortran.map (GFORTRAN_10.2): New symbol version, export
+ _gfortran_{,m,s}findloc{0,1}_c10 symbols.
+ * Makefile.in: Regenerated.
+ * generated/findloc0_c10.c: Generated.
+ * generated/findloc1_c10.c: Generated.
+
2020-05-28 Harald Anlauf <anlauf@gmx.de>
PR libfortran/95104
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index a0922a4db39..849f83609b8 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-23 Thomas Koenig <tkoenig@gcc.gnu.org>
PR libfortran/95191
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 45dcc6d614f..16bcbf7c699 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 Iain Buclaw <ibuclaw@gdcproject.org>
* d-demangle.c (dlang_attributes): Add @live attribute.
diff --git a/libitm/ChangeLog b/libitm/ChangeLog
index b3ebcab466b..d0602a6f6de 100644
--- a/libitm/ChangeLog
+++ b/libitm/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index 5f42020f0b6..9b2d90ae3a4 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index e5422ecd063..73b84c58fd2 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog
index eb045415f75..9f23bbc05ac 100644
--- a/libquadmath/ChangeLog
+++ b/libquadmath/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
index d5d0a9bf9ad..e1da53bdcd5 100644
--- a/libsanitizer/ChangeLog
+++ b/libsanitizer/ChangeLog
@@ -1,3 +1,13 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * HOWTO_MERGE: Do not mention not existing argument.
+ * README.gcc: Update LLVM repository location.
+
2020-05-26 Martin Liska <mliska@suse.cz>
* LOCAL_PATCHES: Use git hash instead of SVN id.
diff --git a/libssp/ChangeLog b/libssp/ChangeLog
index dfb2015edc5..3891d204fac 100644
--- a/libssp/ChangeLog
+++ b/libssp/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 60e9112bf93..019315c7355 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,15 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
+2020-05-29 François Dumont <fdumont@gcc.gnu.org>
+
+ PR libstdc++/95079
+ * include/bits/hashtable_policy.h (_Insert_base<>::try_emplace): New.
+ * include/bits/unordered_map.h (unordered_map<>::try_emplace): Adapt.
+ (unordered_map<>::insert_or_assign): Adapt.
+
2020-05-27 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/95282
diff --git a/libvtv/ChangeLog b/libvtv/ChangeLog
index b50e74be2c7..8e7b9513fcb 100644
--- a/libvtv/ChangeLog
+++ b/libvtv/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/95147
diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog
index 21d3df630e0..bdd92bf9669 100644
--- a/lto-plugin/ChangeLog
+++ b/lto-plugin/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
2020-05-26 Alexandre Oliva <oliva@adacore.com>
* lto-plugin.c (skip_in_suffix): New.
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index 0ff380f9f6c..d65a2dedc94 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,3 +1,17 @@
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * bugzilla-close-candidate.py: Fix sorting of branches.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * bugzilla-close-candidate.py: Fix parsing of SVN revisions.
+ Fix skipping of PRs that contain Can be closed message.
+
+2020-05-29 Martin Liska <mliska@suse.cz>
+
+ * bugzilla-close-candidate.py: Support both SVN and GIT messages
+ in PRs. Remove need of usage of the bugzilla API key.
+
2020-05-27 Jakub Jelinek <jakub@redhat.com>
* update_version_git: Rewrite using
diff --git a/zlib/ChangeLog b/zlib/ChangeLog
index eb7b2a97c26..09e2778f247 100644
--- a/zlib/ChangeLog
+++ b/zlib/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-29 H.J. Lu <hjl.tools@gmail.com>
+
+ PR bootstrap/95413
+ * configure: Regenerated.
+
ChangeLog file for zlib