From: GCC Administrator Date: Mon, 7 Nov 2022 00:16:42 +0000 (+0000) Subject: Daily bump. X-Git-Tag: basepoints/gcc-14~3497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c67c15d839a8237912311a0f974fef48580edff;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0549cdddda34..9d3b61e96908 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 a9017fbbe6b3..0503ed97af3b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221106 +20221107 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1281c4ec6544..dd7526e55492 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 6e8aa0508bfd..abf1d8f648e3 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 cda4f18b6de7..fe270579d4a7 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