From: GCC Administrator Date: Sun, 14 Jun 2020 00:16:51 +0000 (+0000) Subject: Daily bump. X-Git-Tag: releases/gcc-10.2.0~224 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94ccc38063dc9769538cd4336fb7a1fd88419284;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index d540cbfb2c47..90b1180b4340 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20200613 +20200614 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9f7954eafc0e..eee8caa5d534 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,21 @@ +2020-06-13 Iain Sandoe + + PR c++/95440 + * call.c (add_candidates): Use vec_safe_length() for + testing the arguments list. + (build_new_method_call_1): Use vec_safe_is_empty() when + checking for an empty args list. + +2020-06-13 Patrick Palka + + PR c++/93467 + * constraint.cc (associate_classtype_constraints): If there is a + discrepancy between the current template depth and the template + depth of the original declaration, then adjust the template + parameter depth within the current constraints appropriately. + * pt.c (tsubst_friend_class): Substitute into and set the + constraints on the injected declaration. + 2020-06-12 Iain Sandoe PR c++/95350 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1b4f924063c8..39fedee879d9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,14 @@ +2020-06-13 Iain Sandoe + + PR c++/95440 + * g++.dg/coroutines/pr95440.C: New test. + +2020-06-13 Patrick Palka + + PR c++/93467 + * g++.dg/cpp2a/concepts-friend6.C: New test. + * g++.dg/cpp2a/concepts-friend7.C: New test. + 2020-06-12 Iain Sandoe PR c++/95350