From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id 03DEE3858C52; Tue, 12 Apr 2022 00:17:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 03DEE3858C52 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 r12-8096] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: d74c4c6a1b4956b5cd9b2a770bb7261836fa1289 X-Git-Newrev: da066c4269c7992327bd2abdf51f075a1b1240f7 Message-Id: <20220412001724.03DEE3858C52@sourceware.org> Date: Tue, 12 Apr 2022 00:17:23 +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: Tue, 12 Apr 2022 00:17:24 -0000 https://gcc.gnu.org/g:da066c4269c7992327bd2abdf51f075a1b1240f7 commit r12-8096-gda066c4269c7992327bd2abdf51f075a1b1240f7 Author: GCC Administrator Date: Tue Apr 12 00:16:37 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 64 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 7 ++++++ gcc/cp/ChangeLog | 20 ++++++++++++++++ gcc/testsuite/ChangeLog | 52 ++++++++++++++++++++++++++++++++++++++++ libstdc++-v3/ChangeLog | 48 +++++++++++++++++++++++++++++++++++++ 6 files changed, 192 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8e6182e541c..7edfcb64c0b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,67 @@ +2022-04-11 Peter Bergner + + PR target/104894 + * config/rs6000/rs6000.cc (rs6000_sibcall_aix): Handle pcrel sibcalls + to longcall functions. + +2022-04-11 Jason Merrill + + * ipa-free-lang-data.cc (free_lang_data_in_decl): Fix typos. + +2022-04-11 Segher Boessenkool + + PR target/105213 + PR target/103623 + * config/rs6000/rs6000.md (unpack_nodm): Add m,r,i alternative. + +2022-04-11 Jakub Jelinek + + PR tree-optimization/105218 + * tree-ssa-phiopt.cc (value_replacement): If middle_bb has + more than one predecessor or phi's bb more than 2 predecessors, + reset phi result uses instead of adding a debug temp. + +2022-04-11 Kito Cheng + + PR target/104853 + * config.gcc: Pass -misa-spec to arch-canonicalize and + multilib-generator. + * config/riscv/arch-canonicalize: Adding -misa-spec option. + (SUPPORTED_ISA_SPEC): New. + (arch_canonicalize): New argument `isa_spec`. + Handle multiple ISA spec versions. + * config/riscv/multilib-generator: Adding -misa-spec option. + +2022-04-11 Kito Cheng + + * config/riscv/arch-canonicalize: Add TODO item. + (IMPLIED_EXT): Sync. + (arch_canonicalize): Checking until no change. + +2022-04-11 Tamar Christina + + PR target/105197 + * tree-vect-stmts.cc (vectorizable_condition): Prevent cond swap when + not masked. + +2022-04-11 Jason Merrill + + PR c++/100370 + * pointer-query.cc (compute_objsize_r) [POINTER_PLUS_EXPR]: Require + deref == -1. + +2022-04-11 Jakub Jelinek + + PR tree-optimization/104639 + * tree-ssa-phiopt.cc: Include tree-ssa-propagate.h. + (value_replacement): Optimize (x != cst1 ? x : cst2) != cst3 + into x != cst3. + +2022-04-11 Jeff Law + + * config/bfin/bfin.md (rol_one): Fix pattern to indicate the + sign bit of the source ends up in CC. + 2022-04-09 Jan Hubicka PR ipa/103376 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index e1ce52db7e0..abfb32ab33c 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220411 +20220412 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 5ca3182088b..c04ca532f38 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,10 @@ +2022-04-11 Jakub Jelinek + + PR c++/105186 + * c-common.cc (c_common_nodes_and_builtins): After registering __int%d + and __int%d__ builtin types, initialize corresponding ridpointers + entry. + 2022-03-30 Marek Polacek PR c++/101030 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 01d1dbf8a84..5eddfdcd398 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,23 @@ +2022-04-11 Jason Merrill + + PR c++/98249 + * call.cc (build_operator_new_call): Just look in ::. + +2022-04-11 Alexandre Oliva + + * constexpr.cc (cxx_eval_call_expression): Disregard dtor + result. + +2022-04-11 Alexandre Oliva + + * semantics.cc (set_cleanup_locs): Propagate locus to call + wrapped in cast-to-void. + +2022-04-11 Jason Merrill + + PR c++/100370 + * init.cc (warn_placement_new_too_small): Check deref. + 2022-04-09 Jason Merrill PR c++/105191 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 52aa5495647..2a401d45873 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,55 @@ +2022-04-11 Peter Bergner + + PR target/104894 + * gcc.target/powerpc/pr104894.c: New test. + * gcc.target/powerpc/pr104894-2.c: New test. + +2022-04-11 Jason Merrill + + PR c++/98249 + * g++.dg/lookup/new3.C: New test. + +2022-04-11 Jakub Jelinek + + PR tree-optimization/105218 + * gcc.dg/pr105218.c: New test. + +2022-04-11 Alexandre Oliva + + PR target/104253 + * gcc.target/powerpc/pr104253.c: Add missing dg- before + require-effective-target. Prune warning about -mfloat128 + possibly not being fully supported. + +2022-04-11 Tamar Christina + + PR target/105197 + * gcc.target/aarch64/sve/pr105197-1.c: New test. + * gcc.target/aarch64/sve/pr105197-2.c: New test. + +2022-04-11 Jason Merrill + + PR c++/100370 + * g++.dg/warn/Wplacement-new-size-11.C: New test. + +2022-04-11 Jakub Jelinek + + PR tree-optimization/104639 + * gcc.dg/tree-ssa/pr104639-1.c: New test. + * gcc.dg/tree-ssa/pr104639-2.c: New test. + +2022-04-11 Jakub Jelinek + + PR c++/105186 + * c-c++-common/pr105186.c: New test. + +2022-04-11 Kewen Lin + + PR testsuite/103196 + * gcc.target/powerpc/p9-vec-length-epil-7.c: Add option + -fdisable-tree-cunroll. + * gcc.target/powerpc/p9-vec-length-full-7.c: Likewise. + 2022-04-10 Harald Anlauf PR fortran/105184 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1b0000ea5e1..f0299ad027b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,51 @@ +2022-04-11 Jonathan Wakely + + * include/std/stacktrace (basic_stacktrace::_Impl::_M_allocate): + Change [[unlikely]] attribute to [[likely]]. + +2022-04-11 Jonathan Wakely + + PR libstdc++/105031 + * include/std/stacktrace (basic_stacktrace::basic_stacktrace): + Fix allocator usage in constructors. + (basic_stacktrace::operator=(const basic_stacktrace&)): Do not + try to reallocate using const allocator. + (basic_stacktrace::operator=(basic_stacktrace&&)): Fix + if-constexpr with non-constant condition. Do not allocate new + storage if allocator propagates. Do not set _M_size if + allocation fails. + (basic_stacktrace::swap(basic_stacktrace&)): Fix typo. Add + assertion that non-propagating allocators are equal. + * testsuite/19_diagnostics/stacktrace/stacktrace.cc: New test. + +2022-04-11 Jonathan Wakely + + * include/std/stacktrace (basic_stacktrace::current): Duplicate + implementation into each overload. Add noinline attribute and + skip current frame. + (basic_stacktrace::max_size()): Call _Impl::_S_max_size. + (basic_stacktrace::_S_curr_cb()): New function defining lambda. + (basic_stacktrace::_Impl::_S_max_size): New function defining + maximum size in terms of allocator and size_type. + (basic_stacktrace::_Impl::_M_allocate): Check against + max_size(). + * testsuite/19_diagnostics/stacktrace/entry.cc: Call function + for non-constexpr checks. Check line number is correct. + +2022-04-11 Jonathan Wakely + + * testsuite/20_util/stacktrace/entry.cc: Moved to... + * testsuite/19_diagnostics/stacktrace/entry.cc: ...here. + * testsuite/20_util/stacktrace/synopsis.cc: Moved to... + * testsuite/19_diagnostics/stacktrace/synopsis.cc: ...here. + * testsuite/20_util/stacktrace/version.cc: Moved to... + * testsuite/19_diagnostics/stacktrace/version.cc: ...here. + +2022-04-11 Jonathan Wakely + + * include/experimental/bits/fs_path.h (path): Define special + members after path::_Cmpt is complete. + 2022-04-08 Jonathan Wakely PR libstdc++/105153