]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 29 Jul 2021 00:18:27 +0000 (00:18 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 29 Jul 2021 00:18:27 +0000 (00:18 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/d/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog

index 00a21af58a8d2d1c0a02de6257f1a23292fceb38..cb1b0d28a7c1a599cc7901d460b1e19cb78f73d4 100644 (file)
@@ -1,3 +1,27 @@
+2021-07-28  Martin Uecker  <muecker@gwdg.de>
+
+       * calls.c (maybe_warn_rdwr_sizes): Correct argument
+       numbers in warning that were switched.
+
+2021-07-28  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2021-07-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/101586
+       * gimple-fold.c (clear_padding_type): Ignore FIELD_DECLs with byte
+       positions above or equal to sz except for diagnostics of flexible
+       array members.
+
+2021-07-28  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2021-07-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/101562
+       * expmed.c (store_integral_bit_field): Only use movstrict_optab
+       if the operand isn't paradoxical.
+
 2021-07-28  Release Manager
 
        * GCC 11.2.0 released.
index 10746464112a30bd6bfac405410ce5a48b62d21b..15aac4430a7d2710302c091bd679ea8e367a29fd 100644 (file)
@@ -1 +1 @@
-20210728
+20210729
index b22bff42f520e15d1fef26004b413044b391fe78..27334e65749c58bb10a9de6f64e8ebb2227dd3b1 100644 (file)
@@ -1,3 +1,51 @@
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101640
+       * expr.cc (binary_op): Use build2 instead of fold_build2.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101490
+       * d-codegen.cc (build_array_index): Handle void arrays same as byte.
+       * d-convert.cc (convert_expr): Handle converting to zero-sized arrays.
+       * dmd/dcast.c (castTo): Handle casting to zero-sized arrays.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101441
+       * dmd/expression.c (FuncInitExp::resolveLoc): Set type as `string'.
+       (PrettyFuncInitExp::resolveLoc): Likewise.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101127
+       * d-builtins.cc (d_builtin_function_ext_scope): New function.
+       * d-lang.cc (LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE): Define.
+       * d-tree.h (d_builtin_function_ext_scope): Declare.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101619
+       * dmd/expression.c (DotTemplateExp::checkType): New function.
+       (DotTemplateExp::checkValue): New function.
+       * dmd/expression.h (class DotTemplateExp): Declare checkType and
+       checkValue.
+
 2021-07-28  Release Manager
 
        * GCC 11.2.0 released.
index 9357857fcaf223c30acd05a94f5555d08a4f2bce..f4c61fa5c6131721078daa378c5b2e44b0bd43c8 100644 (file)
@@ -1,3 +1,31 @@
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-23  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101536
+       * check.c (array_check): Adjust check for the case of CLASS
+       arrays.
+
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-21  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101514
+       * target-memory.c (gfc_interpret_derived): Size of array component
+       of derived type can only be computed here for explicit shape.
+       * trans-types.c (gfc_get_nodesc_array_type): Do not dereference
+       NULL pointers.
+
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-18  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101084
+       * io.c (resolve_tag_format): Extend FORMAT check to unknown type.
+
 2021-07-28  Release Manager
 
        * GCC 11.2.0 released.
index 83e26c02d4ec8c0d507313f65cc553e7fb27c05a..294b905db7cfa3c6e18aa41a41c6c382ca1f82ab 100644 (file)
@@ -1,3 +1,99 @@
+2021-07-28  Martin Uecker  <muecker@gwdg.de>
+
+       * gcc.dg/Wnonnull-4.c: Correct argument numbers in warnings.
+
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-23  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101536
+       * gfortran.dg/pr101536.f90: New test.
+
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-21  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101514
+       * gfortran.dg/pr101514.f90: New test.
+
+2021-07-28  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2021-07-18  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/101084
+       * gfortran.dg/fmt_nonchar_3.f90: New test.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101640
+       * gdc.dg/pr96429.d: Update test.
+       * gdc.dg/pr101640.d: New test.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101490
+       * gdc.dg/pr101490.d: New test.
+       * gdc.test/fail_compilation/fail22144.d: New test.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101441
+       * gdc.test/compilable/b19002.d: New test.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101127
+       * gdc.dg/pr101127a.d: New test.
+       * gdc.dg/pr101127b.d: New test.
+
+2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       Backported from master:
+       2021-07-28  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/101619
+       * gdc.test/fail_compilation/fail7424b.d: Update test.
+       * gdc.test/fail_compilation/fail7424c.d: Update test.
+       * gdc.test/fail_compilation/fail7424d.d: Update test.
+       * gdc.test/fail_compilation/fail7424e.d: Update test.
+       * gdc.test/fail_compilation/fail7424f.d: Update test.
+       * gdc.test/fail_compilation/fail7424g.d: Update test.
+       * gdc.test/fail_compilation/fail7424h.d: Update test.
+       * gdc.test/fail_compilation/fail7424i.d: Update test.
+       * gdc.test/compilable/test22133.d: New test.
+       * gdc.test/fail_compilation/fail22133.d: New test.
+
+2021-07-28  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2021-07-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/101586
+       * g++.dg/torture/builtin-clear-padding-4.C: New test.
+
+2021-07-28  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2021-07-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/101562
+       * gcc.c-torture/compile/pr101562.c: New test.
+
 2021-07-28  Release Manager
 
        * GCC 11.2.0 released.