public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-5183] Daily bump.
@ 2023-01-16  0:18 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2023-01-16  0:18 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:cc44e55e55d2efb57e995f9b8f29dec939fd7cf9

commit r13-5183-gcc44e55e55d2efb57e995f9b8f29dec939fd7cf9
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon Jan 16 00:17:33 2023 +0000

    Daily bump.

Diff:
---
 contrib/ChangeLog      |  5 +++++
 gcc/ChangeLog          | 11 +++++++++++
 gcc/DATESTAMP          |  2 +-
 gcc/m2/ChangeLog       | 21 +++++++++++++++++++++
 libstdc++-v3/ChangeLog | 38 ++++++++++++++++++++++++++++++++++++++
 5 files changed, 76 insertions(+), 1 deletion(-)

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index fab42525127..b00c0368cd9 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-15  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* config-list.mk: Update FreeBSD targets to version 13.
+	Add aarch64-freebsd13.
+
 2023-01-12  Gerald Pfeifer  <gerald@pfeifer.com>
 
 	* config-list.mk: Remove i486-freebsd4, ia64-freebsd6, and
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 87e7dfb2dc8..e32d115c233 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,14 @@
+2023-01-15  Aldy Hernandez  <aldyh@redhat.com>
+
+	PR tree-optimization/107608
+	* range-op-float.cc (range_operator_float::fold_range): Avoid
+	folding into INF when flag_trapping_math.
+	* value-range.h (frange::known_isinf): Return false for possible NANs.
+
+2023-01-15  Xianmiao Qu  <cooper.qu@linux.alibaba.com>
+
+	* config.gcc (csky-*-*): Support --with-float=softfp.
+
 2023-01-14  Takayuki 'January June' Suwa  <jjsuwa_sys3175@yahoo.co.jp>
 
 	* config/xtensa/xtensa-protos.h (order_regs_for_local_alloc):
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index dbdecdf7fc7..748a3e00583 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230115
+20230116
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index c12b37a917a..ab0f6dd1a49 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,24 @@
+2023-01-15  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* gm2-compiler/M2LexBuf.mod (isSrcToken): Add block comment.
+	Remove dead code.
+	* gm2-compiler/M2Quads.def (BuildNot): Add notTokPos parameter.
+	* gm2-compiler/M2Quads.mod (BuildNot): Add notTokPos parameter.
+	Create and push virtual token.
+	(PopBooltok): New procedure.
+	(PushBooltok): New procedure.
+	(PushBool): Re-implement using PushBooltok.
+	(PopBool): Re-implement using PopBooltok.
+	* gm2-compiler/P3Build.bnf (ConstFactor): Record token
+	position of NOT.
+	(Factor): Record token position	of NOT.
+	* gm2-compiler/PHBuild.bnf (ConstFactor): Record token
+	position of NOT.
+	(Relation): Push token position.
+	(UnaryOrConstTerm): Push token position.
+	(AddOperator): Push token position.
+	(MulOperator): Push token position.
+
 2023-01-13  Iain Sandoe  <iain@sandoe.co.uk>
 
 	* gm2-gcc/m2options.h (M2Options_SetVerbose): Export the
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 6a0ddd40d86..6ca2c172e7a 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,41 @@
+2023-01-15  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* doc/xml/manual/status_cxx2014.xml: Switch www.open-std.org to
+	https.
+	* doc/xml/manual/status_cxx2017.xml: Ditto.
+	* doc/xml/manual/status_cxx2020.xml: Ditto.
+	* doc/xml/manual/status_cxx2023.xml: Ditto.
+	* doc/html/manual/status.html: Regenerate.
+
+2023-01-15  Jonathan Wakely  <jwakely@redhat.com>
+
+	* testsuite/std/time/tzdb_list/1.cc: Remove dg-xfail-run-if
+	and fail gracefully if defining the weak symbol doesn't work.
+
+2023-01-15  François Dumont  <fdumont@gcc.gnu.org>
+
+	PR libstdc++/108288
+	* include/debug/safe_iterator.h (_Safe_iterator<>::operator++(int)): Extend deadlock
+	fix to other iterator category.
+	(_Safe_iterator<>::operator--(int)): Likewise.
+	* include/debug/safe_local_iterator.h (_Safe_local_iterator<>::operator++(int)):
+	Fix deadlock.
+	* testsuite/util/debug/unordered_checks.h (invalid_local_iterator_pre_increment): New.
+	(invalid_local_iterator_post_increment): New.
+	* testsuite/23_containers/unordered_map/debug/invalid_local_iterator_post_increment_neg.cc:
+	New test.
+	* testsuite/23_containers/unordered_map/debug/invalid_local_iterator_pre_increment_neg.cc:
+	New test.
+
+2023-01-15  Jonathan Wakely  <jwakely@redhat.com>
+
+	* testsuite/30_threads/jthread/jthread.cc: Remove -pthread from
+	dg-options.
+
+2023-01-15  Jonathan Wakely  <jwakely@redhat.com>
+
+	* testsuite/std/time/clock/utc/io.cc: Use ctype to widen char.
+
 2023-01-14  Björn Schäpers  <bjoern@hazardy.de>
 
 	* acinclude.m4 (GLIBCXX_ENABLE_BACKTRACE): Add check for

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-16  0:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-16  0:18 [gcc r13-5183] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).