public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-7201] Daily bump.
@ 2021-02-12  0:16 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2021-02-12  0:16 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:0c5cdb31bd423f650aaa3917cc21de0cde91e0fc

commit r11-7201-g0c5cdb31bd423f650aaa3917cc21de0cde91e0fc
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Fri Feb 12 00:16:25 2021 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 34 ++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c/ChangeLog         |  4 ++++
 gcc/cp/ChangeLog        | 33 +++++++++++++++++++++++++++++
 gcc/fortran/ChangeLog   | 19 +++++++++++++++++
 gcc/testsuite/ChangeLog | 55 +++++++++++++++++++++++++++++++++++++++++++++++++
 libgfortran/ChangeLog   |  6 ++++++
 libgomp/ChangeLog       | 18 ++++++++++++++++
 libstdc++-v3/ChangeLog  | 17 +++++++++++++++
 9 files changed, 187 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index be48b95ff2f..ddf4c7f92d7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,37 @@
+2021-02-11  Eric Botcazou  <ebotcazou@adacore.com>
+
+	* config/i386/winnt.c (i386_pe_seh_unwind_emit): When switching to
+	the cold section, emit a nop before the directive if the previous
+	active instruction can throw.
+
+2021-02-11  Peter Bergner  <bergner@linux.ibm.com>
+
+	PR target/99041
+	* config/rs6000/predicates.md (mma_assemble_input_operand): Restrict
+	memory addresses that are legal for quad word accesses.
+
+2021-02-11  Andrea Corallo  <andrea.corallo@arm.com>
+
+	PR target/98931
+	* config/arm/thumb2.md (*doloop_end_internal): Generate
+	alternative sequence to handle long range branches.
+
+2021-02-11  Joel Hutton  <joel.hutton@arm.com>
+
+	PR tree-optimization/98772
+	* optabs-tree.c (supportable_half_widening_operation): New function
+	to check for supportable V8QI->V8HI widening patterns.
+	* optabs-tree.h (supportable_half_widening_operation): New function.
+	* tree-vect-stmts.c (vect_create_half_widening_stmts): New function
+	to create promotion stmts for V8QI->V8HI widening patterns.
+	(vectorizable_conversion): Add case for V8QI->V8HI.
+
+2021-02-11  Richard Biener  <rguenther@suse.de>
+
+	* sparseset.h (SPARSESET_ELT_BITS): Remove.
+	(SPARSESET_ELT_TYPE): Use unsigned int.
+	* fwprop.c: Do not include sparseset.h.
+
 2021-02-10  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/99035
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 64faa020dd9..027c5a0d149 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20210211
+20210212
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index b306491dba8..1fee3e76399 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,7 @@
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	* c-parser.c (c_parser_if_statement): Use vec_free.
+
 2021-02-04  Martin Sebor  <msebor@redhat.com>
 
 	PR c/97882
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index c6f052016a0..46cce66c411 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,36 @@
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/95888
+	* pt.c (lookup_template_class_1): Pass tf_none to tsubst when looking
+	for the partial instantiation.
+
+2021-02-11  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/99033
+	* init.c (build_zero_init_1): Handle zero initialiation of
+	flexible array members like initialization of [0] arrays.
+	Use integer_minus_onep instead of comparison to integer_minus_one_node
+	and integer_zerop instead of comparison against size_zero_node.
+	Formatting fixes.
+
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/99063
+	* semantics.c (finish_do_stmt): Check for unexpanded parameter packs.
+
+2021-02-11  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/97582
+	* name-lookup.c (op_unqualified_lookup): Handle an ambiguous
+	lookup result by discarding it if the first element is a
+	class-scope declaration, otherwise return it.
+	(push_operator_bindings): Handle an ambiguous lookup result by
+	doing push_local_binding on each element in the list.
+
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	* parser.c (cp_parser_selection_statement): Use vec_free.
+
 2021-02-10  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/98988
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 3e45a2a98be..275edc0947d 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,22 @@
+2021-02-11  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/98897
+	* match.c (gfc_match_call): Include associate names as possible
+	entities with typebound subroutines. The target needs to be
+	resolved for the type.
+
+2021-02-11  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/99060
+	* primary.c (gfc_match_varspec): Test for non-null 'previous'
+	before using its name in the error message.
+
+2021-02-11  Tobias Burnus  <tobias@codesourcery.com>
+
+	* intrinsic.texi (FINDLOC): Add 'MASK' to argument table.
+	(MAXLOC, MAXVAL, MINLOC, MINVAL): For 'MASK', remove 'an
+	array' as scalars are also permitted.
+
 2021-02-10  Julian Brown  <julian@codesourcery.com>
 
 	PR fortran/98979
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7b679b4b664..288ea1dabcb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,58 @@
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/95888
+	* g++.dg/template/deduce10.C: New test.
+	* g++.dg/template/deduce9.C: New test.
+
+2021-02-11  Peter Bergner  <bergner@linux.ibm.com>
+
+	PR target/99041
+	* g++.target/powerpc/pr99041.C: New test.
+
+2021-02-11  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/99033
+	* g++.dg/ext/flexary38.C: New test.
+
+2021-02-11  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/99063
+	* g++.dg/cpp0x/variadic-crash6.C: New test.
+
+2021-02-11  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/97582
+	* g++.dg/cpp0x/lambda/lambda-template17.C: New test.
+
+2021-02-11  Andrea Corallo  <andrea.corallo@arm.com>
+
+	PR target/98931
+	* gcc.target/arm/pr98931.c: New testcase.
+
+2021-02-11  Joel Hutton  <joel.hutton@arm.com>
+
+	PR tree-optimization/98772
+	* gcc.target/aarch64/pr98772.c: New test.
+
+2021-02-11  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/98897
+	* gfortran.dg/typebound_call_32.f90: New test.
+
+2021-02-11  Paul Thomas  <pault@gcc.gnu.org>
+
+	PR fortran/99060
+	* gfortran.dg/pr99060.f90: New test.
+
+2021-02-11  Alexandre Oliva  <oliva@adacore.com>
+
+	* gcc.target/arm/simd/vmmla_1.c: Pass -mfpu=auto.
+
+2021-02-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/98825
+	* gfortran.dg/dollar_edit_descriptor_4.f: New test.
+
 2021-02-10  Martin Sebor  <msebor@redhat.com>
 
 	PR tree-optimization/92879
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 8f48bec56c0..36c2296ef19 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,9 @@
+2021-02-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/98825
+	* io/transfer.c (next_record_w): Insert check for seen_dollar and if
+	so, skip issueing next record.
+
 2021-01-27  Harris Snyder  <hsnyder@structura.bio>
 
 	* runtime/ISO_Fortran_binding.c (CFI_establish): fixed
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 902651d03d9..bb2288aab1d 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,21 @@
+2021-02-11  Uroš Bizjak  <ubizjak@gmail.com>
+
+	* config/linux/x86/futex.h (__futex_wait):
+	Revert output type back to long.
+	(__futex_wake): Ditto.
+	(futex_wait): Update for revert.
+	(futex_wake): Ditto.
+
+2021-02-11  Uroš Bizjak  <ubizjak@gmail.com>
+
+	* config/linux/x86/futex.h (__futex_wait): New static inline
+	wrapper function.  Correct output type to int and
+	timeout type to void *.
+	(__futex_wake): New static inline wrapper function.
+	Correct output type to int.
+	(futex_wait): Use __futex_wait.
+	(futex_wake): Use __futex_wake.
+
 2021-02-10  Julian Brown  <julian@codesourcery.com>
 
 	PR fortran/98979
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index aae80cc339e..993f8affd3e 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,20 @@
+2021-02-11  Jonathan Wakely  <jwakely@redhat.com>
+
+	* libsupc++/eh_ptr.cc (_GLIBCXX_EH_PTR_RELOPS_COMPAT): Define
+	new macro.
+	* libsupc++/exception_ptr.h (_GLIBCXX_EH_PTR_USED): Check new
+	macro instead of _GLIBCXX_EH_PTR_COMPAT.
+	(operator==): Likewise.
+
+2021-02-11  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/99058
+	* doc/xml/manual/status_cxx2011.xml: Document when support
+	became stable.
+	* doc/xml/manual/status_cxx2014.xml: Likewise.
+	* doc/xml/manual/status_cxx2017.xml: Likewise.
+	* doc/html/manual/status.html: Regenerate.
+
 2021-02-10  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/88881


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-12  0:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-12  0:16 [gcc r11-7201] Daily bump GCC Administrator

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).