Daily bump.

This commit is contained in:
GCC Administrator 2021-03-14 00:16:18 +00:00
parent 77643ac4bb
commit 5e93c2f08f
5 changed files with 47 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2021-03-13 Eugene Rozenfeld <erozen@microsoft.com>
* MAINTAINERS (Write After Approval): Add myself.
2021-03-13 Mike Frysinger <vapier@gentoo.org>
* Makefile.def: Remove all-sim dependency on configure-gdb.
* Makefile.in: Regenerated.
2021-03-11 Jeff Law <law@redhat.com>
* MAINTAINERS: Update entries for a few ex-ImgTec employees

View File

@ -1,3 +1,15 @@
2021-03-13 Martin Sebor <msebor@redhat.com>
PR tree-optimization/99489
* builtins.c (gimple_call_alloc_size): Fail gracefully when argument
is not a call statement.
2021-03-13 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/99544
* match.pd (X + (X << C) -> X * (1 + (1 << C))): Don't simplify
if for vector types multiplication can't be done in type's mode.
2021-03-12 Eric Botcazou <ebotcazou@adacore.com>
PR target/99422

View File

@ -1 +1 @@
20210313
20210314

View File

@ -1,3 +1,13 @@
2021-03-13 Paul Thomas <pault@gcc.gnu.org>
PR fortran/99125
* trans-array.c (gfc_conv_expr_descriptor): For deferred length
length components use the ss_info string length instead of
gfc_get_expr_charlen. Make sure that the deferred string length
is a variable before assigning to it. Otherwise use the expr.
* trans-expr.c (gfc_conv_string_length): Make sure that the
deferred string length is a variable before assigning to it.
2021-03-12 Tobias Burnus <tobias@codesourcery.com>
PR fortran/99514

View File

@ -1,3 +1,18 @@
2021-03-13 Martin Sebor <msebor@redhat.com>
PR tree-optimization/99489
* gcc.dg/Wstringop-truncation-9.c: New test.
2021-03-13 Paul Thomas <pault@gcc.gnu.org>
PR fortran/99125
* gfortran.dg/alloc_deferred_comp_1.f90: New test.
2021-03-13 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/99544
* gcc.dg/gomp/pr99544.c: New test.
2021-03-12 Nathan Sidwell <nathan@acm.org>
PR c++/99238