From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 009CE3858C2C; Fri, 25 Mar 2022 00:18:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 009CE3858C2C MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-7807] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 21079cb82bff1048596b935bbf6a86f49e78a2f3 X-Git-Newrev: 6fc4a993cebc960c9556d840dc7c109b1b08b295 Message-Id: <20220325001835.009CE3858C2C@sourceware.org> Date: Fri, 25 Mar 2022 00:18:34 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2022 00:18:35 -0000 https://gcc.gnu.org/g:6fc4a993cebc960c9556d840dc7c109b1b08b295 commit r12-7807-g6fc4a993cebc960c9556d840dc7c109b1b08b295 Author: GCC Administrator Date: Fri Mar 25 00:17:18 2022 +0000 Daily bump. Diff: --- ChangeLog | 4 +++ gcc/ChangeLog | 49 ++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 6 ++++ gcc/cp/ChangeLog | 42 ++++++++++++++++++++++++++ gcc/testsuite/ChangeLog | 80 +++++++++++++++++++++++++++++++++++++++++++++++++ libatomic/ChangeLog | 5 ++++ 7 files changed, 187 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index aee29354f01..a2260e97bc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2022-03-24 Bill Schmidt + + * MAINTAINERS: Change my information. + 2022-03-16 Chung-Ju Wu * MAINTAINERS: Add myself to DCO section. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9640ffe4b03..bddb065e8bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,52 @@ +2022-03-24 Alexandre Oliva + + PR debug/104564 + * gimple-harden-conditionals.cc (detach_value): Keep temps + anonymous. + +2022-03-24 Alexandre Oliva + + PR middle-end/104975 + * gimple-harden-conditionals.cc + (pass_harden_compares::execute): Force split in case of + multiple edges. + +2022-03-24 Jakub Jelinek + + PR c++/105035 + * fold-const.cc (operand_equal_p) : If either + field0 or field1 is not a FIELD_DECL, return false. + +2022-03-24 Richard Biener + + * tree-predcom.cc (chain::chain): Add CTOR. + (component::component): Likewise. + (pcom_worker::release_chain): Use delete. + (release_components): Likewise. + (pcom_worker::filter_suitable_components): Likewise. + (pcom_worker::split_data_refs_to_components): Use new. + (make_invariant_chain): Likewise. + (make_rooted_chain): Likewise. + (pcom_worker::combine_chains): Likewise. + * tree-vect-loop.cc (vect_create_epilog_for_reduction): + Make sure to release previously constructed scalar_results. + * tree-vect-stmts.cc (vectorizable_load): Use auto_vec + for vec_offsets. + * vr-values.cc (simplify_using_ranges::~simplify_using_ranges): + Release m_flag_set_edges. + +2022-03-24 Siddhesh Poyarekar + + PR tree-optimization/104970 + * tree-object-size.cc (parm_object_size): Restrict size + computation scenarios to explicit access attributes. + +2022-03-24 Kewen Lin + + PR target/104967 + * config/rs6000/rs6000-c.cc (find_instance): Skip instances with null + function types. + 2022-03-23 Richard Biener PR target/102125 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a4374e63098..575162361cc 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220324 +20220325 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index fac0026e732..932a666a38f 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,9 @@ +2022-03-24 Pascal Obry + + PR ada/104767 + * libgnat/g-sercom__mingw.adb (Close): Reset port handle to -1. + * libgnat/g-sercom__linux.adb (Close): Likewise. + 2022-03-10 Richard Biener PR ada/104861 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 215aad519db..6a1524b78ea 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,45 @@ +2022-03-24 Marek Polacek + + PR c++/104284 + * decl.cc (check_initializer): Don't call build_aggr_init in + a template. + +2022-03-24 Jason Merrill + + PR c++/96645 + * cp-tree.h (type_has_default_ctor_to_be_synthesized): Declare. + * class.cc (type_has_default_ctor_to_be_synthesized): New. + (type_has_non_user_provided_default_constructor_1): Support it. + (type_has_non_user_provided_default_constructor): Now a wrapper. + * method.cc (complain_about_unparsed_dmi): New. + (constructible_expr): Call it. + +2022-03-24 Marek Polacek + + PR c++/102990 + * typeck2.cc (massage_init_elt): Avoid folding CONSTRUCTORs. + +2022-03-24 Patrick Palka + + PR c++/104620 + * call.cc (build_over_call): Use cxx_constant_value_sfinae + instead of cxx_constant_value to evaluate a consteval call. + * constexpr.cc (cxx_constant_value_sfinae): Add decl parameter + and pass it to cxx_eval_outermost_constant_expr. + * cp-tree.h (cxx_constant_value_sfinae): Add decl parameter. + * pt.cc (fold_targs_r): Pass NULL_TREE as decl parameter to + cxx_constant_value_sfinae. + +2022-03-24 Jakub Jelinek + + PR c++/104994 + * constexpr.cc (cxx_eval_constant_expression): Don't diagnose passing + through extern thread_local declarations. Change wording from + declaration to definition. + (potential_constant_expression_1): Don't diagnose extern thread_local + declarations. Change wording from declared to defined. + * decl.cc (start_decl): Likewise. + 2022-03-23 Jason Merrill PR c++/103337 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d41b8e9fc0d..e87cc860d4f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,83 @@ +2022-03-24 Marek Polacek + + PR c++/104284 + * g++.dg/cpp1y/constexpr-104284-1.C: New test. + * g++.dg/cpp1y/constexpr-104284-2.C: New test. + * g++.dg/cpp1y/constexpr-104284-3.C: New test. + * g++.dg/cpp1y/constexpr-104284-4.C: New test. + +2022-03-24 Jason Merrill + + PR c++/96645 + * g++.dg/ext/is_constructible3.C: Expect error. + * g++.dg/ext/is_constructible7.C: New test. + +2022-03-24 Marek Polacek + + PR c++/102990 + * g++.dg/cpp0x/nsdmi-template22.C: New test. + * g++.dg/cpp0x/nsdmi-template23.C: New test. + +2022-03-24 Patrick Palka + + PR c++/104620 + * g++.dg/cpp23/consteval-if2.C: XFAIL two dg-error tests where + the argument to the non-constant non-dependent consteval call is + wrapped by NON_DEPENDENT_EXPR. + * g++.dg/cpp2a/consteval30.C: New test. + +2022-03-24 Alexandre Oliva + + PR debug/104564 + * c-c++-common/torture/harden-comp.c: Adjust. + * c-c++-common/torture/harden-cond.c: Adjust. + +2022-03-24 Alexandre Oliva + + PR middle-end/104975 + * gcc.dg/pr104975.c: New. + +2022-03-24 Jakub Jelinek + + PR target/102024 + * gcc.dg/compat/pr102024_main.c: New test. + * gcc.dg/compat/pr102024_test.h: New test. + * gcc.dg/compat/pr102024_x.c: New test. + * gcc.dg/compat/pr102024_y.c: New test. + * g++.dg/compat/pr102024_main.C: New test. + * g++.dg/compat/pr102024_test.h: New test. + * g++.dg/compat/pr102024_x.C: New test. + * g++.dg/compat/pr102024_y.C: New test. + +2022-03-24 Jakub Jelinek + + PR c++/105035 + * g++.dg/warn/Wduplicated-cond2.C: New test. + +2022-03-24 Siddhesh Poyarekar + + PR tree-optimization/104970 + * gcc.dg/builtin-dynamic-object-size-0.c (test_parmsz_simple2, + test_parmsz_simple3, test_parmsz_extern, test_parmsz_internal, + test_parmsz_internal2, test_parmsz_internal3): New tests. + (main): Use them. + +2022-03-24 Jakub Jelinek + + PR c++/104994 + * g++.dg/diagnostic/constexpr1.C: Change expected diagnostic wording + from declared to defined. + * g++.dg/cpp23/constexpr-nonlit1.C: Likewise. + (garply): Change dg-error into dg-bogus. + * g++.dg/cpp23/constexpr-nonlit2.C: Change expected diagnostic wording + from declaration to definition. + * g++.dg/cpp23/constexpr-nonlit6.C: Change expected diagnostic wording + from declared to defined. + * g++.dg/cpp23/constexpr-nonlit7.C: New test. + * g++.dg/cpp2a/constexpr-try5.C: Change expected diagnostic wording + from declared to defined. + * g++.dg/cpp2a/consteval3.C: Likewise. + 2022-03-23 David Malcolm PR analyzer/104979 diff --git a/libatomic/ChangeLog b/libatomic/ChangeLog index 645257a3f0c..0038339d581 100644 --- a/libatomic/ChangeLog +++ b/libatomic/ChangeLog @@ -1,3 +1,8 @@ +2022-03-24 Tom de Vries + + PR target/105011 + * tas_n.c (libat_test_and_set): Fix return value. + 2022-03-17 Jakub Jelinek PR target/104688