public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-4487] Daily bump.
@ 2022-12-05 0:18 GCC Administrator
0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-12-05 0:18 UTC (permalink / raw)
To: gcc-cvs, libstdc++-cvs
https://gcc.gnu.org/g:102f3cef568e685d5f65a712f75e0628e3c1733c
commit r13-4487-g102f3cef568e685d5f65a712f75e0628e3c1733c
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date: Mon Dec 5 00:17:24 2022 +0000
Daily bump.
Diff:
---
gcc/DATESTAMP | 2 +-
gcc/cp/ChangeLog | 17 +++++++++++++++++
gcc/fortran/ChangeLog | 19 +++++++++++++++++++
gcc/testsuite/ChangeLog | 28 ++++++++++++++++++++++++++++
libsanitizer/ChangeLog | 4 ++++
libstdc++-v3/ChangeLog | 11 +++++++++++
6 files changed, 80 insertions(+), 1 deletion(-)
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 1638a1245b8..fac0e17b9fa 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221204
+20221205
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 6ebd1ae33b9..254d384eee0 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,20 @@
+2022-12-04 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/107417
+ * pt.cc (for_each_template_parm_r) <case REQUIRES_EXPR>: Move
+ walking of the TREE_TYPE of each parameter to ...
+ * tree.cc (cp_walk_subtrees) <case REQUIRES_EXPR>: ... here.
+
+2022-12-04 Iain Sandoe <iain@sandoe.co.uk>
+ Adrian Perl <adrian.perl@web.de>
+
+ PR c++/100611
+ PR c++/101367
+ PR c++/101976
+ PR c++/99576
+ * coroutines.cc (find_interesting_subtree): Do not promote temporaries
+ that are only used as direct initializers for some other object.
+
2022-12-03 Patrick Palka <ppalka@redhat.com>
PR c++/103081
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index fbb7ed559ce..68df3a033f8 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,22 @@
+2022-12-04 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107922
+ * simplify.cc (gfc_simplify_unpack): Terminate simplification when
+ array-valued argument FIELD does not provide enough elements.
+
+2022-12-04 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107870
+ * intrinsic.texi: Fix typo in documentation of intrinsic FLOOR.
+ Describe the optional KIND argument to intrinsics as a scalar
+ constant expression, in accordance with the current standard.
+
+2022-12-04 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107899
+ * resolve.cc (resolve_deallocate_expr): Avoid NULL pointer dereference
+ on invalid CLASS variable.
+
2022-11-30 Martin Liska <mliska@suse.cz>
* parse.cc (parse_omp_structured_block): Remove extra semicolon.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 3a60cfa7853..d631900f30d 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,31 @@
+2022-12-04 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107922
+ * gfortran.dg/unpack_field_1.f90: New test.
+
+2022-12-04 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/107899
+ * gfortran.dg/pr107899.f90: New test.
+
+2022-12-04 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/107417
+ * g++.dg/cpp2a/concepts-requires33.C: New test.
+
+2022-12-04 Iain Sandoe <iain@sandoe.co.uk>
+ Adrian Perl <adrian.perl@web.de>
+
+ PR c++/100611
+ PR c++/101367
+ PR c++/101976
+ PR c++/99576
+ * g++.dg/coroutines/pr100611.C: New test.
+ * g++.dg/coroutines/pr101367.C: New test.
+ * g++.dg/coroutines/pr101976.C: New test.
+ * g++.dg/coroutines/pr99576_1.C: New test.
+ * g++.dg/coroutines/pr99576_2.C: New test.
+
2022-12-03 Patrick Palka <ppalka@redhat.com>
PR c++/103081
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
index a0e50037988..2a7ce17c807 100644
--- a/libsanitizer/ChangeLog
+++ b/libsanitizer/ChangeLog
@@ -1,3 +1,7 @@
+2022-12-04 Iain Sandoe <iain@sandoe.co.uk>
+
+ * configure.tgt: Restrict build to Darwin 16 or newer.
+
2022-11-15 Martin Liska <mliska@suse.cz>
* LOCAL_PATCHES: Update local patches.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4ddb404752e..219cbfcf52b 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,14 @@
+2022-12-04 Iain Sandoe <iain@sandoe.co.uk>
+
+ * config/os/bsd/darwin/os_defines.h
+ (_GTHREAD_USE_RECURSIVE_MUTEX_INIT_FUNC): Limit use of this macro
+ to OS versions that need it.
+
+2022-12-04 Iain Sandoe <iain@sandoe.co.uk>
+
+ * config/os/bsd/darwin/os_defines.h (_GLIBCXX_WEAK_DEFINITION): Use the
+ implementation namespace for the weak attribute.
+
2022-12-02 Björn Schäpers <bjoern@hazardy.de>
Jonathan Wakely <jwakely@redhat.com>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-12-05 0:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-05 0:18 [gcc r13-4487] 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).