From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id CC9463858C53; Mon, 7 Nov 2022 00:17:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CC9463858C53 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667780250; bh=it4d8ng1vGPayCnEaSENIiEJzJh/qEAm5jzwTtL/MdU=; h=From:To:Subject:Date:From; b=LmGiPChCAQAVaDWec0NWIZPY6qrwxTuUSG0JERfqt4rVUQn6gYKUq5zVdXiIX39Zk blRFVRGCTplDJSHTwJd/+mZ1j4N2J99urfH5FNudVfC2snpgyLFz5TgDK8l1gbx0eE 4VTv53vDC0yRgXgpxpAdmAHE/LTqdHDbDeu/VUQw= MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-3710] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: c56826d0f3b143a9cb64ee263707046f8073c1b6 X-Git-Newrev: 3c67c15d839a8237912311a0f974fef48580edff Message-Id: <20221107001730.CC9463858C53@sourceware.org> Date: Mon, 7 Nov 2022 00:17:30 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3c67c15d839a8237912311a0f974fef48580edff commit r13-3710-g3c67c15d839a8237912311a0f974fef48580edff Author: GCC Administrator Date: Mon Nov 7 00:16:42 2022 +0000 Daily bump. Diff: --- gcc/ChangeLog | 5 +++++ gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 7 +++++++ gcc/testsuite/ChangeLog | 4 ++++ libstdc++-v3/ChangeLog | 42 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 59 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0549cdddda3..9d3b61e9690 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2022-11-06 Uroš Bizjak + + * optabs.cc (can_vec_set_var_idx_p): Use operand[2] + mode when checking vec_set_optab. + 2022-11-06 Xi Ruoyao * config/loongarch/loongarch.md (UNSPEC_FCOPYSIGN): New unspec. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a9017fbbe6b..0503ed97af3 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221106 +20221107 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1281c4ec654..dd7526e5549 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2022-11-06 Patrick Palka + + * tree.cc (cxx_attribute_table): Include init_priority entry + only if SUPPORTS_INIT_PRIORITY. + (handle_init_priority_attribute): Add ATTRIBUTE_UNUSED. Assert + SUPPORTS_INIT_PRIORITY is true. + 2022-11-04 Torbjörn SVENSSON Yvan ROUX diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6e8aa0508bf..abf1d8f648e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2022-11-06 Patrick Palka + + * g++.dg/special/initpri3.C: New test. + 2022-11-06 Xi Ruoyao * gcc.target/loongarch/fcopysign.c: New test. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index cda4f18b6de..fe270579d4a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,45 @@ +2022-11-06 Patrick Palka + + * include/bits/atomic_wait.h (_detail::__platform_wait_alignment): + Declare inline. Remove redundant static specifier. + (__detail::__atomic_spin_count_relax): Declare inline. + (__detail::__atomic_spin_count): Likewise. + * include/bits/regex_automaton.h (__detail::_S_invalid_state_id): + Declare inline for C++17. Declare constexpr. Remove + redundant const and static specifiers. + * include/bits/regex_error.h (regex_constants::error_collate): + Declare inline for C++17 as per P0607R0. + (regex_constants::error_ctype): Likewise. + (regex_constants::error_escape): Likewise. + (regex_constants::error_backref): Likewise. + (regex_constants::error_brack): Likewise. + (regex_constants::error_paren): Likewise. + (regex_constants::error_brace): Likewise. + (regex_constants::error_badbrace): Likewise. + (regex_constants::error_range): Likewise. + (regex_constants::error_space): Likewise. + (regex_constants::error_badrepeat): Likewise. + (regex_constants::error_complexity): Likewise. + (regex_constants::error_stack): Likewise. + * include/ext/concurrence.h (__gnu_cxx::__default_lock_policy): + Likewise. Remove redundant static specifier. + * include/pstl/execution_defs.h (execution::seq): Declare inline + for C++17 as per P0607R0. + (execution::par): Likewise. + (execution::par_unseq): Likewise. + (execution::unseq): Likewise. + +2022-11-06 Patrick Palka + + PR libstdc++/44952 + PR libstdc++/39796 + PR libstdc++/98108 + * include/std/iostream (__ioinit): No longer define here if + the init_priority attribute is usable. + * src/c++98/ios_init.cc (__ioinit): Define here instead if + init_priority is usable, via ... + * src/c++98/ios_base_init.h: ... this new file. + 2022-11-05 Jakob Hasse <0xjakob@users.noreply.github.com> PR libstdc++/105387