Daily bump.
This commit is contained in:
parent
85cefe2256
commit
0c5cdb31bd
@ -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
|
||||
|
@ -1 +1 @@
|
||||
20210211
|
||||
20210212
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user