From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 60A68385803C; Wed, 14 Jul 2021 00:18:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 60A68385803C MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-8735] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: 63566075309907ca807c1c6cef57bf19f4602825 X-Git-Newrev: 1892a1baa8a277ebdb96a773dae53bdc3f2a1627 Message-Id: <20210714001857.60A68385803C@sourceware.org> Date: Wed, 14 Jul 2021 00:18:57 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jul 2021 00:18:57 -0000 https://gcc.gnu.org/g:1892a1baa8a277ebdb96a773dae53bdc3f2a1627 commit r11-8735-g1892a1baa8a277ebdb96a773dae53bdc3f2a1627 Author: GCC Administrator Date: Wed Jul 14 00:18:23 2021 +0000 Daily bump. Diff: --- gcc/ChangeLog | 46 +++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 89 +++++++++++++++++++++++++++++++++++++++++++++++ gcc/testsuite/ChangeLog | 92 +++++++++++++++++++++++++++++++++++++++++++++++++ libstdc++-v3/ChangeLog | 15 ++++++++ 5 files changed, 243 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 33669b7c62b..fcb83fa08e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,49 @@ +2021-07-13 Richard Biener + + Backported from master: + 2021-07-05 Richard Biener + + PR middle-end/101291 + * cfgloopmanip.c (loop_version): Set the loop copy of the + versioned loop to the new loop. + +2021-07-13 Richard Biener + + Backported from master: + 2021-07-12 Richard Biener + + PR tree-optimization/101394 + * tree-ssa-pre.c (do_pre_regular_insertion): Avoid inserting + copies from abnormals for a full redundancy. + +2021-07-13 Richard Biener + + Backported from master: + 2021-07-12 Richard Biener + + PR middle-end/101423 + * gimple.c (gimple_could_trap_p_1): Internal function calls + do not trap. + * tree-eh.c (tree_could_trap_p): Likewise. + +2021-07-13 Richard Biener + + Backported from master: + 2021-07-01 Richard Biener + + PR tree-optimization/100778 + * tree-vect-slp.c (vect_schedule_slp_node): Do not place trapping + vectorized ops ahead of their scalar BB. + +2021-07-13 Richard Biener + + Backported from master: + 2021-05-28 Richard Biener + + PR tree-optimization/100778 + * tree-vect-slp.c (vect_build_slp_tree_1): Prevent possibly + trapping ops in different BBs. + 2021-07-09 Martin Jambor Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 12fd5d42259..4b4dbab796b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210713 +20210714 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f48eb70a6f3..1da091c82fd 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,92 @@ +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-09 Patrick Palka + + PR c++/101181 + * constraint.cc (tsubst_requires_expr): Pass complain/in_decl to + add_extra_args. + * cp-tree.h (add_extra_args): Add complain/in_decl parameters. + * pt.c (build_extra_args): Make a copy of args. + (add_extra_args): Add complain/in_decl parameters. Enable the + code for handling the case where the extra arguments are + dependent. + (tsubst_pack_expansion): Pass complain/in_decl to + add_extra_args. + (tsubst_template_args): Handle missing template arguments. + (tsubst_expr) : Pass complain/in_decl to + add_extra_args. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-09 Patrick Palka + + PR c++/101247 + * pt.c (any_template_parm_r) : Just walk the + DECL_CONTEXT. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-02 Patrick Palka + + PR c++/101247 + * pt.c (any_template_parm_r) : Rewrite to + use common_enclosing_class and to not depend on the TREE_TYPE + of outer levels pointing to the corresponding primary template. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-01 Patrick Palka + + PR c++/101194 + * constexpr.c (cxx_eval_array_reference): When the element type + is an empty type and the corresponding element is omitted, just + return an empty CONSTRUCTOR instead of attempting value + initialization. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-24 Patrick Palka + + PR c++/98832 + * pt.c (maybe_aggr_guide): Handle alias templates appropriately. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-24 Patrick Palka + + PR c++/101182 + * constraint.cc (evaluate_requires_expr): Adjust function comment. + * cp-gimplify.c (cp_genericize_r) : Move to ... + (cp_fold) : ... here. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-07 Patrick Palka + + PR c++/100918 + * parser.c (cp_parser_lookup_name): Check access of the lookup + result before we potentially adjust an injected-class-name to + its TEMPLATE_DECL. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-05-26 Patrick Palka + + PR c++/97420 + * cvt.c (noexcept_conv_p): Remove redundant checks and simplify. + (fnptr_conv_p): Don't call non_reference. Use INDIRECT_TYPE_P + instead of TYPE_PTR_P. + * pt.c (convert_nontype_argument_function): Look through + implicit INDIRECT_REFs before calling strip_fnptr_conv. + 2021-07-09 Jason Merrill PR c++/101098 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d2fc32d7127..93288e802b8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,95 @@ +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-09 Patrick Palka + + PR c++/101181 + * g++.dg/cpp2a/concepts-requires26.C: New test. + * g++.dg/cpp2a/lambda-uneval16.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-09 Patrick Palka + + PR c++/101247 + * g++.dg/cpp2a/concepts-memtmpl4.C: Uncomment the commented out + example, which we now handle correctly. + * g++.dg/cpp2a/concepts-memtmpl5.C: New test. + * g++.dg/cpp2a/concepts-memtmpl5a.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-02 Patrick Palka + + PR c++/101247 + * g++.dg/cpp2a/concepts-memtmpl4.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-07-01 Patrick Palka + + PR c++/101194 + * g++.dg/cpp0x/constexpr-empty16.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-24 Patrick Palka + + PR c++/98832 + * g++.dg/cpp2a/class-deduction-alias9.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-24 Patrick Palka + + PR c++/101182 + * g++.dg/cpp2a/concepts-requires25.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-07 Patrick Palka + + PR c++/100918 + * g++.dg/template/access38.C: New test. + +2021-07-13 Patrick Palka + + Backported from master: + 2021-05-26 Patrick Palka + + PR c++/97420 + * g++.dg/cpp0x/noexcept68.C: New test. + +2021-07-13 Richard Biener + + Backported from master: + 2021-07-12 Richard Biener + + PR tree-optimization/101394 + * gcc.dg/torture/pr101394.c: New testcase. + +2021-07-13 Richard Biener + + Backported from master: + 2021-07-01 Richard Biener + + PR tree-optimization/100778 + * gcc.dg/torture/pr100778.c: New testcase. + +2021-07-13 Richard Biener + + Backported from master: + 2021-05-28 Richard Biener + + PR tree-optimization/100778 + * gcc.dg/vect/bb-slp-pr100778-1.c: New testcase. + 2021-07-09 Jason Merrill PR c++/101098 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c6da2b0a270..fa76fc77407 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,18 @@ +2021-07-13 Patrick Palka + + Backported from master: + 2021-06-18 Patrick Palka + + PR libstdc++/100387 + * include/bits/ranges_algo.h (__minmax_fn::operator()): Rewrite + to limit comparison complexity to 3*N/2. + (__minmax_element_fn::operator()): Likewise. + (shift_right): Avoid premature std::move of __result. + * testsuite/25_algorithms/minmax/constrained.cc (test04, test05): + New tests. + * testsuite/25_algorithms/minmax_element/constrained.cc (test02): + Likewise. + 2021-06-22 Thomas Rodgers Backported from master: