Daily bump.

This commit is contained in:
GCC Administrator 2022-12-05 00:17:24 +00:00
parent 24b9337d1f
commit 102f3cef56
6 changed files with 80 additions and 1 deletions

View file

@ -1 +1 @@
20221204
20221205

View file

@ -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

View file

@ -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.

View file

@ -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

View file

@ -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.

View file

@ -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>