public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Giuliano Belinassi <giulianob@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc(refs/users/giulianob/heads/autopar_rebase2)] Daily bump.
Date: Tue, 18 Aug 2020 00:05:14 +0000 (GMT)	[thread overview]
Message-ID: <20200818000514.17BCD3850436@sourceware.org> (raw)

https://gcc.gnu.org/g:d4a70cc22bc9b2510bd0ffb8169b00c10d741061

commit d4a70cc22bc9b2510bd0ffb8169b00c10d741061
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Jun 21 00:16:21 2020 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           |  7 +++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 16 ++++++++++++++++
 gcc/fortran/ChangeLog   | 33 +++++++++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 41 +++++++++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  |  7 +++++++
 6 files changed, 105 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d599e8fe04c..26c62407114 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2020-06-20  Bin Cheng  <bin.cheng@linux.alibaba.com>
+
+	PR tree-optimization/95638
+	* tree-loop-distribution.c (pg_edge_callback_data): New field.
+	(loop_distribution::break_alias_scc_partitions): Record and restore
+	postorder information.  Fix memory leak.
+
 2020-06-19  Tobias Burnus  <tobias@codesourcery.com>
 
 	* config/gcn/gcn.c (gcn_related_vector_mode): Add ARG_UNUSED.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 34d423ff9ba..61722185183 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20200620
+20200621
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 4af420a2cdb..ea3002dd13a 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,19 @@
+2020-06-20  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/95505
+	* coroutines.cc (morph_fn_to_coro): Update handling of
+	get-return-object-on-allocation-fail and diagnose missing
+	std::nothrow.
+
+2020-06-20  Jason Merrill  <jason@redhat.com>
+
+	* call.c (joust): Only compare constraints for non-template
+	candidates with matching parameters.
+	* pt.c (tsubst_pack_expansion): Fix getting a type parameter
+	pack.
+	(more_specialized_fn): Only compare constraints for candidates with
+	matching parameters.
+
 2020-06-19  Jason Merrill  <jason@redhat.com>
 
 	* method.c (early_check_defaulted_comparison): Allow defaulting
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 6b3ba8b85f0..135dfbae266 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,36 @@
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95707
+	* gfortran.h (gfc_common_head): Enlarge buffer.
+	* trans-common.c (gfc_sym_mangled_common_id): Enlarge temporary
+	buffers, and add check on length on mangled name to prevent
+	overflow.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95688
+	* iresolve.c (gfc_get_string): Enlarge static buffer size.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95687
+	* class.c (get_unique_type_string): Return a string with dynamic
+	length.
+	(get_unique_hashed_string, gfc_hash_value): Use dynamic result
+	from get_unique_type_string instead of static buffer.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95689
+	* interface.c (check_sym_interfaces): Enlarge temporary buffer,
+	and add check on length on mangled name to prevent overflow.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95587
+	* match.c (gfc_match_equivalence): Check constraints on
+	EQUIVALENCE objects also for CLASS variables.
+
 2020-06-18  Tobias Burnus  <tobias@codesourcery.com>
 
 	* openmp.c (resolve_omp_clauses): Reject vars with
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index ab7066f6856..600d4cb6e85 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,44 @@
+2020-06-20  Iain Sandoe  <iain@sandoe.co.uk>
+
+	PR c++/95505
+	* g++.dg/coroutines/pr95505.C: New test.
+
+2020-06-20  Jason Merrill  <jason@redhat.com>
+
+	* g++.dg/cpp2a/concepts-return-req1.C: Expect error.
+	* g++.dg/cpp2a/concepts-p2113a.C: New test.
+	* g++.dg/cpp2a/concepts-p2113b.C: New test.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95707
+	* gfortran.dg/pr95707.f90: New file.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95688
+	* gfortran.dg/pr95688.f90: New file.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95687
+	* gfortran.dg/pr95687.f90: New file.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95689
+	* gfortran.dg/pr95689.f90: New file.
+
+2020-06-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95587
+	* gfortran.dg/pr95587.f90: New file.
+
+2020-06-20  Bin Cheng  <bin.cheng@linux.alibaba.com>
+
+	PR tree-optimization/95638
+	* g++.dg/tree-ssa/pr95638.C: New test.
+
 2020-06-19  David Edelsohn  <dje.gcc@gmail.com>
 
 	* gcc.dg/tree-ssa/popcount4ll.c: Add target lp64.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index b148f854870..0c046028147 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,10 @@
+2020-06-20  Jason Merrill  <jason@redhat.com>
+
+	* testsuite/24_iterators/move_iterator/rel_ops_c++20.cc:
+	Remove greedy_ops tests.
+	* testsuite/24_iterators/reverse_iterator/rel_ops_c++20.cc:
+	Remove greedy_ops tests.
+
 2020-06-19  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/95765


             reply	other threads:[~2020-08-18  0:05 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-18  0:05 Giuliano Belinassi [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-08-18  1:41 Giuliano Belinassi
2020-08-18  1:40 Giuliano Belinassi
2020-08-18  1:39 Giuliano Belinassi
2020-08-18  1:37 Giuliano Belinassi
2020-08-18  1:36 Giuliano Belinassi
2020-08-18  1:33 Giuliano Belinassi
2020-08-18  1:32 Giuliano Belinassi
2020-08-18  1:31 Giuliano Belinassi
2020-08-18  1:22 Giuliano Belinassi
2020-08-18  1:22 Giuliano Belinassi
2020-08-18  1:19 Giuliano Belinassi
2020-08-18  1:16 Giuliano Belinassi
2020-08-18  1:14 Giuliano Belinassi
2020-08-18  1:13 Giuliano Belinassi
2020-08-18  1:05 Giuliano Belinassi
2020-08-18  1:01 Giuliano Belinassi
2020-08-18  0:58 Giuliano Belinassi
2020-08-18  0:50 Giuliano Belinassi
2020-08-18  0:47 Giuliano Belinassi
2020-08-18  0:37 Giuliano Belinassi
2020-08-18  0:33 Giuliano Belinassi
2020-08-18  0:29 Giuliano Belinassi
2020-08-18  0:24 Giuliano Belinassi
2020-08-18  0:22 Giuliano Belinassi
2020-08-18  0:18 Giuliano Belinassi
2020-08-18  0:16 Giuliano Belinassi
2020-08-18  0:11 Giuliano Belinassi
2020-08-18  0:08 Giuliano Belinassi
2020-08-18  0:06 Giuliano Belinassi
2020-08-18  0:05 Giuliano Belinassi
2020-08-18  0:04 Giuliano Belinassi
2020-08-17 23:56 Giuliano Belinassi
2020-08-17 23:51 Giuliano Belinassi
2020-08-17 23:45 Giuliano Belinassi
2020-08-17 23:41 Giuliano Belinassi
2020-08-17 23:37 Giuliano Belinassi
2020-08-17 23:32 Giuliano Belinassi
2020-08-17 23:28 Giuliano Belinassi
2020-08-17 23:23 Giuliano Belinassi
2020-08-17 23:13 Giuliano Belinassi
2020-08-17 23:03 Giuliano Belinassi
2020-08-17 22:57 Giuliano Belinassi
2020-08-17 22:56 Giuliano Belinassi
2020-08-17 22:54 Giuliano Belinassi
2020-08-17 22:49 Giuliano Belinassi
2020-08-17 22:46 Giuliano Belinassi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200818000514.17BCD3850436@sourceware.org \
    --to=giulianob@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).