aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-11-07 00:16:42 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-11-07 00:16:42 +0000
commit3c67c15d839a8237912311a0f974fef48580edff (patch)
treea4dc1e7448129c927c168c526f613341a46882bb
parentc56826d0f3b143a9cb64ee263707046f8073c1b6 (diff)
downloadgcc-3c67c15d839a8237912311a0f974fef48580edff.zip
gcc-3c67c15d839a8237912311a0f974fef48580edff.tar.gz
gcc-3c67c15d839a8237912311a0f974fef48580edff.tar.bz2
Daily bump.
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog7
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--libstdc++-v3/ChangeLog42
5 files changed, 59 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0549cdd..9d3b61e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2022-11-06 Uroš Bizjak <ubizjak@gmail.com>
+
+ * optabs.cc (can_vec_set_var_idx_p): Use operand[2]
+ mode when checking vec_set_optab.
+
2022-11-06 Xi Ruoyao <xry111@xry111.site>
* config/loongarch/loongarch.md (UNSPEC_FCOPYSIGN): New unspec.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index a9017fb..0503ed9 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221106
+20221107
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 1281c4e..dd7526e 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,10 @@
+2022-11-06 Patrick Palka <ppalka@redhat.com>
+
+ * 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 <torbjorn.svensson@foss.st.com>
Yvan ROUX <yvan.roux@foss.st.com>
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6e8aa05..abf1d8f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2022-11-06 Patrick Palka <ppalka@redhat.com>
+
+ * g++.dg/special/initpri3.C: New test.
+
2022-11-06 Xi Ruoyao <xry111@xry111.site>
* gcc.target/loongarch/fcopysign.c: New test.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index cda4f18..fe27057 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,45 @@
+2022-11-06 Patrick Palka <ppalka@redhat.com>
+
+ * 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 <ppalka@redhat.com>
+
+ 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