From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1464) id B3027386F82D; Thu, 2 Jul 2020 21:07:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B3027386F82D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1593724060; bh=shbegGaxVhwDztQPXPyFdKOjPDLhLejXNnoMaiBcqPg=; h=From:To:Subject:Date:From; b=K3Ya9Dgg0/CGFCWSgb+lF37L2u6GZMbWbLABDxwuTM57ixE0ANNQqdn0ViCp5rb6d y+dvapMmmDTPfevnwMkViTlN1cpqrA7y9b30dK600qI9ytSeS1FgaKyd3HKsmVEFH9 pzbqzIsujUSI4g2vqNojE/nbHVBDGbDXgV3XMx5I= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Peter Bergner To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/ibm/heads/gcc-10-branch)] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/vendors/ibm/heads/gcc-10-branch X-Git-Oldrev: 4816bf6a080909f4088c38a70055611046a184d4 X-Git-Newrev: 11e1cfcf5823a22cbf88c0f7dd8b5460cd76712c Message-Id: <20200702210740.B3027386F82D@sourceware.org> Date: Thu, 2 Jul 2020 21:07:40 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jul 2020 21:07:40 -0000 https://gcc.gnu.org/g:11e1cfcf5823a22cbf88c0f7dd8b5460cd76712c commit 11e1cfcf5823a22cbf88c0f7dd8b5460cd76712c Author: GCC Administrator Date: Tue Jun 30 09:02:58 2020 +0000 Daily bump. Diff: --- gcc/ChangeLog | 9 ++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 10 +++++++++ gcc/cp/ChangeLog | 21 +++++++++++++++++ gcc/fortran/ChangeLog | 17 ++++++++++++++ gcc/po/ChangeLog | 4 ++++ gcc/testsuite/ChangeLog | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ libstdc++-v3/ChangeLog | 11 +++++++++ 8 files changed, 133 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a5ae5049d68..4bee6cd860e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2020-06-29 Jakub Jelinek + + Backported from master: + 2020-06-24 Jakub Jelinek + + PR middle-end/95810 + * fold-const.c (fold_cond_expr_with_comparison): Optimize + A <= 0 ? A : -A into (type)-absu(A) rather than -abs(A). + 2020-06-25 H.J. Lu Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 39082fd9fab..88cb34f9be6 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20200629 +20200630 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index bd3e55fa2e9..e63551d1b79 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,13 @@ +2020-06-29 Jakub Jelinek + + Backported from master: + 2020-06-27 Jakub Jelinek + + PR middle-end/95903 + * c-common.c (pointer_int_sum): Use TYPE_OVERFLOW_UNDEFINED instead of + !TYPE_UNSIGNED check to see if we can apply distributive law and handle + smaller precision intop operands separately. + 2020-06-14 Jakub Jelinek PR c/95580 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 03c6e88b468..6359cbd8caf 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,24 @@ +2020-06-29 Iain Sandoe + + PR c++/95519 + * coroutines.cc (struct coroutine_info):Add a field + to hold computed p.return_void expressions. + (coro_build_promise_expression): New. + (get_coroutine_return_void_expr): New. + (finish_co_yield_expr): Build the promise expression + using coro_build_promise_expression. + (finish_co_return_stmt): Likewise. + (build_init_or_final_await): Likewise. + (morph_fn_to_coro): Likewise, for several cases. + +2020-06-29 Iain Sandoe + + Backported from master: + 2020-06-26 Iain Sandoe + + * coroutines.cc (morph_fn_to_coro): Handle error + returns in building g-r-o-o-a-f expressions. + 2020-06-28 Iain Sandoe Backported from master: diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4c028558636..ba870620cdc 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,20 @@ +2020-06-29 Harald Anlauf + + Backported from master: + 2020-06-28 Harald Anlauf + + PR fortran/95340 + * match.c (gfc_match_select_rank): Do not dereference NULL pointer. + +2020-06-29 Harald Anlauf + + Backported from master: + 2020-06-28 Harald Anlauf + + PR fortran/95880 + * symbol.c (gfc_add_type): If sym->ns->proc_name is set, use it, + otherwise fall back to sym->name. + 2020-06-27 Harald Anlauf Backported from master: diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index 4283a7e244d..7074de985e8 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,7 @@ +2020-06-29 Joseph Myers + + * sv.po: Update. + 2020-06-22 Joseph Myers * sv.po: Update. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 241ed4782b5..9f84ac5f368 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,63 @@ +2020-06-29 Harald Anlauf + + Backported from master: + 2020-06-28 Harald Anlauf + + PR fortran/95340 + * gfortran.dg/pr95340.f90: New file. + +2020-06-29 Harald Anlauf + + Backported from master: + 2020-06-28 Harald Anlauf + + PR fortran/95880 + * gfortran.dg/pr95880.f90: New file. + +2020-06-29 Iain Sandoe + + PR c++/95519 + * g++.dg/coroutines/torture/pr95519-00-return_void.C: New test. + * g++.dg/coroutines/torture/pr95519-01-initial-suspend.C: New test. + * g++.dg/coroutines/torture/pr95519-02-final_suspend.C: New test. + * g++.dg/coroutines/torture/pr95519-03-return-value.C: New test. + * g++.dg/coroutines/torture/pr95519-04-yield-value.C: New test. + * g++.dg/coroutines/torture/pr95519-05-gro.C: New test. + * g++.dg/coroutines/torture/pr95519-06-grooaf.C: New test. + * g++.dg/coroutines/torture/pr95519-07-unhandled-exception.C: New test. + +2020-06-29 Iain Sandoe + + Backported from master: + 2020-06-26 Iain Sandoe + + * g++.dg/coroutines/coro1-allocators.h (BAD_GROOAF_STATIC): + New. + * g++.dg/coroutines/coro-bad-grooaf-00-static.C: New test. + +2020-06-29 Jakub Jelinek + + Backported from master: + 2020-06-09 Jakub Jelinek + + * g++.dg/torture/pr95493.C: Add -Wno-psabi -w to dg-additional-options. + +2020-06-29 Jakub Jelinek + + Backported from master: + 2020-06-27 Jakub Jelinek + + PR middle-end/95903 + * c-c++-common/pr95903.c: New test. + +2020-06-29 Jakub Jelinek + + Backported from master: + 2020-06-24 Jakub Jelinek + + PR middle-end/95810 + * gcc.dg/ubsan/pr95810.c: New test. + 2020-06-28 Iain Sandoe Backported from master: diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 681071334f3..097fbd8c476 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,14 @@ +2020-06-29 Ville Voutilainen + + Backported from master: + 2020-06-28 Ville Voutilainen + + PR libstdc++/95915 + * include/std/variant (_Uninitialized): + Adjust the condition and the comment. + * testsuite/20_util/variant/95915.cc: New. + * testsuite/20_util/variant/compile.cc: Add new test. + 2020-06-24 Jonathan Wakely Backported from master: