From: GCC Administrator Date: Thu, 11 Jun 2020 00:17:16 +0000 (+0000) Subject: Daily bump. X-Git-Tag: releases/gcc-10.2.0~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36b4ff352d5f78951ebb870d7f06ffe8d925218a;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 51c41f0bb81c..1094e86b516a 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20200610 +20200611 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index aced89094061..1f0e56cf422a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,18 @@ +2020-06-10 Iain Sandoe + + PR c++/95346 + * coroutines.cc (morph_fn_to_coro): Ensure that the get- + return-object is constructed correctly; When it is not the + final return value, pass it to the CTOR of the return type + as an rvalue, per the standard comment. + +2020-06-10 Marek Polacek + + PR c++/95562 + * parser.c (cp_parser_direct_declarator): Clear + CP_PARSER_FLAGS_DELAY_NOEXCEPT if the declarator kind is not + cdk_id. + 2020-06-09 Iain Sandoe PR c++/95345 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fe41b062b522..18c6a30d4240 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,13 @@ +2020-06-10 Iain Sandoe + + PR c++/95346 + * g++.dg/coroutines/pr95346.C: New test. + +2020-06-10 Marek Polacek + + PR c++/95562 + * g++.dg/cpp0x/noexcept60.C: New test. + 2020-06-09 Iain Sandoe PR c++/95345