From 11e1cfcf5823a22cbf88c0f7dd8b5460cd76712c Mon Sep 17 00:00:00 2001 From: GCC Administrator Date: Tue, 30 Jun 2020 09:02:58 +0000 Subject: [PATCH] Daily bump. --- 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 a5ae5049d681..4bee6cd860eb 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 39082fd9fabd..88cb34f9be6c 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20200629 +20200630 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index bd3e55fa2e9b..e63551d1b792 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 03c6e88b4687..6359cbd8cafe 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 4c028558636b..ba870620cdc1 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 4283a7e244d3..7074de985e84 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 241ed4782b58..9f84ac5f368d 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 681071334f3a..097fbd8c4764 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: -- 2.47.2