diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-02-12 00:16:25 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-02-12 00:16:25 +0000 |
commit | 0c5cdb31bd423f650aaa3917cc21de0cde91e0fc (patch) | |
tree | b4045c735878d08b99f0ffb5e6c5dfc19665da3b /gcc | |
parent | 85cefe22564c4b7c1159a544fa692a24e0c71870 (diff) | |
download | gcc-0c5cdb31bd423f650aaa3917cc21de0cde91e0fc.zip gcc-0c5cdb31bd423f650aaa3917cc21de0cde91e0fc.tar.gz gcc-0c5cdb31bd423f650aaa3917cc21de0cde91e0fc.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 34 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/c/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 33 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 19 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 55 |
6 files changed, 146 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index be48b95..ddf4c7f 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 64faa02..027c5a0 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20210211 +20210212 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index b306491..1fee3e7 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 c6f0520..46cce66 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 3e45a2a..275edc0 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 7b679b4..288ea1d 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 |