]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 30 Jun 2020 09:02:58 +0000 (09:02 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Tue, 30 Jun 2020 09:02:58 +0000 (09:02 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c-family/ChangeLog
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/po/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index a5ae5049d6817561dda366a053042e717c74575c..4bee6cd860ebd3543fa6fff33ec4cbef148bf703 100644 (file)
@@ -1,3 +1,12 @@
+2020-06-29  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2020-06-24  Jakub Jelinek  <jakub@redhat.com>
+
+       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  <hjl.tools@gmail.com>
 
        Backported from master:
index 39082fd9fabd13bf579488bb1c10c72440c3f976..88cb34f9be6c5f103336a854d4f45e2fff41582c 100644 (file)
@@ -1 +1 @@
-20200629
+20200630
index bd3e55fa2e9ba254b92b6ad404c0a980ced38597..e63551d1b7923ae070d7cd4e4337b3f83703092d 100644 (file)
@@ -1,3 +1,13 @@
+2020-06-29  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2020-06-27  Jakub Jelinek  <jakub@redhat.com>
+
+       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  <jakub@redhat.com>
 
        PR c/95580
index 03c6e88b4687cf2d69e22fc01790884b20c4dfba..6359cbd8cafe91c9e96845f290ad7cb560428729 100644 (file)
@@ -1,3 +1,24 @@
+2020-06-29  Iain Sandoe  <iain@sandoe.co.uk>
+
+       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  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2020-06-26  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * coroutines.cc (morph_fn_to_coro): Handle error
+       returns in building g-r-o-o-a-f expressions.
+
 2020-06-28  Iain Sandoe  <iain@sandoe.co.uk>
 
        Backported from master:
index 4c028558636b237e8cc2fc7d46aaebbd80f5aec0..ba870620cdc114f4c096f19bf471bc5c3c1d8269 100644 (file)
@@ -1,3 +1,20 @@
+2020-06-29  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2020-06-28  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95340
+       * match.c (gfc_match_select_rank): Do not dereference NULL pointer.
+
+2020-06-29  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2020-06-28  Harald Anlauf  <anlauf@gmx.de>
+
+       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  <anlauf@gmx.de>
 
        Backported from master:
index 4283a7e244d37b9fed93bdba530607501650781c..7074de985e84549779be547479f2cdf7841122eb 100644 (file)
@@ -1,3 +1,7 @@
+2020-06-29  Joseph Myers  <joseph@codesourcery.com>
+
+       * sv.po: Update.
+
 2020-06-22  Joseph Myers  <joseph@codesourcery.com>
 
        * sv.po: Update.
index 241ed4782b5899532b9d938e3049b1b409d8c7c2..9f84ac5f368d0dddd9fde7d0c13b6f283e0194e7 100644 (file)
@@ -1,3 +1,63 @@
+2020-06-29  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2020-06-28  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95340
+       * gfortran.dg/pr95340.f90: New file.
+
+2020-06-29  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2020-06-28  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95880
+       * gfortran.dg/pr95880.f90: New file.
+
+2020-06-29  Iain Sandoe  <iain@sandoe.co.uk>
+
+       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  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2020-06-26  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * 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  <jakub@redhat.com>
+
+       Backported from master:
+       2020-06-09  Jakub Jelinek  <jakub@redhat.com>
+
+       * g++.dg/torture/pr95493.C: Add -Wno-psabi -w to dg-additional-options.
+
+2020-06-29  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2020-06-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/95903
+       * c-c++-common/pr95903.c: New test.
+
+2020-06-29  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2020-06-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/95810
+       * gcc.dg/ubsan/pr95810.c: New test.
+
 2020-06-28  Iain Sandoe  <iain@sandoe.co.uk>
 
        Backported from master:
index 681071334f3a043daff26b8082a574d685d03982..097fbd8c4764dc5205a47f94ba0a20099d7eea26 100644 (file)
@@ -1,3 +1,14 @@
+2020-06-29  Ville Voutilainen  <ville.voutilainen@gmail.com>
+
+       Backported from master:
+       2020-06-28  Ville Voutilainen  <ville.voutilainen@gmail.com>
+
+       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  <jwakely@redhat.com>
 
        Backported from master: