From 2da7ce23cfd81b67f77dc102d6f97dd19363b5f4 Mon Sep 17 00:00:00 2001 From: GCC Administrator Date: Tue, 9 Feb 2021 00:16:30 +0000 Subject: [PATCH] Daily bump. --- contrib/ChangeLog | 5 +++++ gcc/ChangeLog | 28 ++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 23 +++++++++++++++++++++++ gcc/testsuite/ChangeLog | 30 ++++++++++++++++++++++++++++++ 5 files changed, 87 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 68a2711c01f..0bc2fee8e71 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2021-02-08 Mike Frysinger + + * mklog.py (generated_files): New set. + (generate_changelog): Add entries based on generated_files. + 2021-02-03 Aaron Sawdey * gcc_update (files_and_dependencies): Add dependency for diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 036394685af..7d4f5db0815 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,31 @@ +2021-02-08 Andre Vieira + + PR middle-end/98974 + * tree-vect-stmts.c (vectorizable_condition): Remove shadow vec_num + parameter in vectorizable_condition. + +2021-02-08 Richard Biener + + PR lto/96591 + * tree.c (walk_tree_1): Walk VECTOR_CST elements. + +2021-02-08 Martin Liska + + PR lto/98971 + * cfgexpand.c (pass_expand::execute): Parse per-function option + flag_patchable_function_entry and use it. + * common.opt: Remove function_entry_patch_area_size and + function_entry_patch_area_start global variables. + * opts.c (parse_and_check_patch_area): New function. + (common_handle_option): Use it. + * opts.h (parse_and_check_patch_area): New function. + * toplev.c (process_options): Parse and use + function_entry_patch_area_size. + +2021-02-08 Martin Sebor + + * doc/extend.texi (attribute malloc): Correct typos. + 2021-02-05 Nathan Sidwell PR driver/98943 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 0100c05cca1..69950ec5a7c 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210208 +20210209 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5522353d026..b9d49d3c9e6 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,26 @@ +2021-02-08 Nathan Sidwell + + * decl.c (start_cleanup_fn): Push function into + namespace. + +2021-02-08 Nathan Sidwell + + PR c++/98531 + * cp-tree.h (push_abi_namespace, pop_abi_namespace): Declare. + * decl.c (push_abi_namespace, pop_abi_namespace): Moved + from rtti.c, add default namespace arg. + (check_redeclaration_exception_specification): Allow a lazy + builtin's eh spec to differ from an lready-declared user + declaration. + (declare_global_var): Use push/pop_abi_namespace. + (get_atexit_node): Push the fndecl into a namespace. + * rtti.c (push_abi_namespace, pop_abi_namespace): Moved to + decl.c. + +2021-02-08 Marek Polacek + + * cp-tree.h (CLASSTYPE_TI_TEMPLATE): Fix typo. + 2021-02-05 Marek Polacek PR c++/98947 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1ad4252af88..b6fb7f385ad 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,33 @@ +2021-02-08 Nathan Sidwell + + * g++.dg/modules/pr98531-2.h: New. + * g++.dg/modules/pr98531-2_a.H: New. + * g++.dg/modules/pr98531-2_b.C: New. + * g++.dg/modules/pr98531-3.h: New. + * g++.dg/modules/pr98531-3_a.H: New. + * g++.dg/modules/pr98531-3_b.C: New. + +2021-02-08 Nathan Sidwell + + PR c++/98531 + * g++.dg/modules/pr98531-1.h: New. + * g++.dg/modules/pr98531-1_a.H: New. + * g++.dg/modules/pr98531-1_b.C: New. + * g++.dg/abi/pr98531-1.C: New. + * g++.dg/abi/pr98531-2.C: New. + * g++.dg/abi/pr98531-3.C: New. + * g++.dg/abi/pr98531-4.C: New. + +2021-02-08 Andre Vieira + + PR middle-end/98974 + * gfortran.dg/pr98974.F90: New test. + +2021-02-08 Richard Biener + + PR lto/96591 + * g++.dg/lto/pr96591_0.C: New testcase. + 2021-02-05 Marek Polacek PR c++/98947