Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 12 Feb 2021 00:16:25 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 12 Feb 2021 00:16:25 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c/ChangeLog
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libgfortran/ChangeLog
libgomp/ChangeLog
libstdc++-v3/ChangeLog

index be48b95ff2fe145e71f6f7f9be01ec26f9503f5f..ddf4c7f92d7bf9de0ceb6508b0ae33c51fb42bca 100644 (file)
@@ -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
index 64faa020dd93bf0c7ebf752d3faf4feb1407d499..027c5a0d149a8ed883f40d536be5ac9fda088a5c 100644 (file)
@@ -1 +1 @@
-20210211
+20210212
index b306491dba8f6b1c5880d2c37961b4fa7bd67529..1fee3e76399a0436899cfaf4bb993bb9e5fca3b7 100644 (file)
@@ -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
index c6f052016a07633c2b0d3da1f0bc3f962a2e3d58..46cce66c41165269c5212f3db0a02aeb2c05dc19 100644 (file)
@@ -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
index 3e45a2a98beaf4d0a039fa5cfacd6d5763dc3ecc..275edc0947d061302a515915b9bff7e7aa6ec696 100644 (file)
@@ -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
index 7b679b4b664165770f89c5074cfe4fb1b51a5a66..288ea1dabcbadbdd01c12b22be1c90ff9c7f4171 100644 (file)
@@ -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
index 8f48bec56c0c37ae2c58c0996b0393216a5bf07e..36c2296ef1994d54d6cd5246ee195c3d981dd998 100644 (file)
@@ -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
index 902651d03d92822cdc457a7b3cfd93ecbaa69543..bb2288aab1d7ee59bb46b3536be17ef26049a7fd 100644 (file)
@@ -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
index aae80cc339e91947fb52c83038235a3209c9719e..993f8affd3e2fa3c486cddf21aa53d78cac5308e 100644 (file)
@@ -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