]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 2 Jul 2020 00:16:59 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 2 Jul 2020 00:16:59 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 8ee2f9f8d056840341d9435eca7abd8ebb528da8..f4714449192cd8d9cebf15c554c7fee6743acb1d 100644 (file)
@@ -1,3 +1,11 @@
+2020-07-01  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
+
+       Backported from master:
+       2020-06-22  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
+
+       * doc/sourcebuild.texi (arm_v8_1m_mve_fp_ok): Add item.
+       (arm_mve_hw): Likewise.
+
 2020-06-30  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * config/rs6000/rs6000.md (isa): Rename "fut" to "p10".
index 1fb34e73e11b3083aa808cf85087f505c74ac8fc..d5b9f0ff5dbce0396e2a1ee3e4d0a86628d45eef 100644 (file)
@@ -1 +1 @@
-20200701
+20200702
index ed546c2682333cd0830294822387fa92390713f1..98060be86dc303e3a84295eba7bc59a4c486a655 100644 (file)
@@ -1,3 +1,27 @@
+2020-07-01  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2020-06-30  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * coroutines.cc (expand_one_await_expression): Remove
+       code dealing with initial suspend.
+       (build_actor_fn): Remove code special-casing initial
+       and final suspend. Handle the final suspend and marking
+       of the coroutine as done.
+       (coro_rewrite_function_body): New.
+       (bind_expr_find_in_subtree): Remove.
+       (coro_body_contains_bind_expr_p): Remove.
+       (morph_fn_to_coro): Split the rewrite of the original
+       function into coro_rewrite_function_body and call it.
+
+2020-07-01  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2020-06-30  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * coroutines.cc (morph_fn_to_coro): Remove trailing
+       space in a diagnostic.
+
 2020-06-30  Iain Sandoe  <iain@sandoe.co.uk>
 
        Backported from master:
index c925ef895a03ae2596fedcdde95633795bb4305f..d36bb3ea75d67ae9ecebd8d94bde59f30dc24b68 100644 (file)
@@ -1,3 +1,13 @@
+2020-07-01  Mark Eggleston  <markeggleston@gcc.gnu.org>
+
+       Backported from master:
+       2020-07-01  Steven G. Kargl  <kargl@gcc.gnu.org>
+                   Mark Eggleston  <markeggleston@gcc.gnu.org>
+
+       PR fortran/95829
+       * decl.c (gfc_match_decl_type_spec): Compare with "* ) " instead
+       of "*)".
+
 2020-06-30  Harald Anlauf  <anlauf@gmx.de>
 
        Backported from master:
index aab23e451848b4ca03fdca96dd1356324213e7ee..f6beee7aa1ea34c0d7c1fc807c28aab5b79f07c0 100644 (file)
@@ -1,3 +1,22 @@
+2020-07-01  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
+
+       Backported from master:
+       2020-06-22  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
+
+       * gcc.target/arm/mve/intrinsics/mve_scalar_shifts1.c: Modify.
+       * gcc.target/arm/mve/intrinsics/mve_scalar_shifts2.c: Likewise.
+       * gcc.target/arm/mve/intrinsics/mve_scalar_shifts3.c: Likewise.
+       * gcc.target/arm/mve/intrinsics/mve_scalar_shifts4.c: Likewise.
+       * lib/target-supports.exp (check_effective_target_arm_mve_hw): Define.
+
+2020-07-01  Mark Eggleston  <markeggleston@gcc.gnu.org>
+
+       Backported from master:
+       2020-07-01  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/95829
+       * gfortran.dg/pr95829.f90: New test.
+
 2020-06-30  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * gcc.target/powerpc/cpu-future.c: Something was done here.
index 097fbd8c4764dc5205a47f94ba0a20099d7eea26..f0363bf8be93e8761cb053a2083c63c0d89b436b 100644 (file)
@@ -1,3 +1,26 @@
+2020-07-01  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2020-06-16  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/95282
+       * include/bits/atomic_base.h (__atomic_impl::load): Add
+       const-qualifier to parameter so that _Tp is deduced as the
+       non-const type, and use _Val to get the unqualified type.
+       (__atomic_impl::exchange): Use the _Val alias to remove
+       volatile from the reinterpret_cast result type.
+       * testsuite/29_atomics/atomic_float/95282.cc: New test.
+
+2020-07-01  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2020-07-01  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/94627
+       * include/bits/regex.h (operator==, operator!=): Remove noexcept
+       equality comparisons for match_results.
+       * testsuite/28_regex/match_results/94627.cc: New test.
+
 2020-06-29  Ville Voutilainen  <ville.voutilainen@gmail.com>
 
        Backported from master: