]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 20 Sep 2021 00:16:21 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 20 Sep 2021 00:16:21 +0000 (00:16 +0000)
config/ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/testsuite/ChangeLog
libgcc/ChangeLog

index 6c3add89176cd754f61c8a46ee1ebf43634453ae..e11c7ab3d8d879dbf3e52ae8b48348d23fa4ebbc 100644 (file)
@@ -1,3 +1,9 @@
+2021-09-19  Andrew Pinski  <apinski@marvell.com>
+
+       PR bootstrap/102389
+       * bootstrap-lto-lean.mk: Handle NM like RANLIB AND AR.
+       * bootstrap-lto.mk: Likewise.
+
 2021-08-18  Iain Sandoe  <iain@sandoe.co.uk>
 
        * mh-darwin: Require a non-shared host configuration to
index 5de7cf2b8f46c98bb4e6e4e7fa1f61b46b5f25c4..6d5c3812381854db174470689f1a80b91b9059c9 100644 (file)
@@ -1,3 +1,78 @@
+2021-09-19  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/102403
+       * gimple-predicate-analysis.cc (predicate::init_from_control_deps):
+       Correct a function pre/postcondition.
+
+2021-09-19  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/102243
+       * tree-ssa-strlen.c (get_range): Handle null cfun.
+
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/darwin.h (LINK_COMMAND_SPEC_A): Use Darwin10
+       unwinder shim as a convenience library.
+
+2021-09-19  Andrew Pinski  <apinski@marvell.com>
+
+       * doc/install.texi: Add note about
+       binutils 2.35 is required for LTO usage.
+
+2021-09-19  Aldy Hernandez  <aldyh@redhat.com>
+
+       * tree-ssa-threadbackward.c
+       (back_threader_registry::register_path): Use push_edge.
+       * tree-ssa-threadedge.c
+       (jump_threader::thread_around_empty_blocks): Same.
+       (jump_threader::thread_through_normal_block): Same.
+       (jump_threader::thread_across_edge): Same.  Also, use auto_bitmap.
+       Tidy up code.
+       * tree-ssa-threadupdate.c
+       (jt_path_registry::allocate_thread_edge): Remove.
+       (jt_path_registry::push_edge): New.
+       (dump_jump_thread_path): Make static.
+       * tree-ssa-threadupdate.h (allocate_thread_edge): Remove.
+       (push_edge): New.
+
+2021-09-19  Aldy Hernandez  <aldyh@redhat.com>
+
+       * gimple-range-path.cc (path_range_query::path_range_query): Add
+       header.
+       (path_range_query::dump): Remove extern declaration of dump_ranger.
+       * gimple-range-trace.cc (dump_ranger): Add DEBUG_FUNCTION marker.
+       * gimple-range-trace.h (dump_ranger): Add prototype.
+
+2021-09-19  John Ericson  <git@JohnEricson.me>
+
+       * gcc.c (find_a_program): New function, factored out of...
+       (find_a_file): Here.
+       (execute): Use find_a_program when looking for programs rather
+       than find_a_file.
+
+2021-09-19  Matwey V. Kornilov  <matwey.kornilov@gmail.com>
+
+       * config/avr/avr-mcus.def: Add atmega324pb.
+       * doc/avr-mmcu.texi: Corresponding changes.
+
+2021-09-19  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR middle-end/88173
+       * match.pd (cmp @0 REAL_CST@1): When @0 is also REAL_CST, apply
+       the same transformations as to @1.  For comparisons against NaN,
+       don't check HONOR_SNANS but confirm that neither operand is a
+       signaling NaN.
+
+2021-09-19  Benjamin Peterson  <benjamin@locrian.net>
+
+       * attribs.c (make_unique_name): Delete.
+       * attribs.h (make_unique_name): Delete.
+
+2021-09-19  Andrew Pinski  <apinski@marvell.com>
+
+       * lra-constraints.c (check_and_process_move): Assert
+       that dclass and sclass are greater than or equal to NO_REGS.
+
 2021-09-18  Jakub Jelinek  <jakub@redhat.com>
 
        * tree.h (OMP_CLAUSE_ORDER_UNCONSTRAINED): Define.
index 2c8e6df035019eb4fa371c3a32f8fb5738ce9f37..c1155ef234139b95b7a7186f2887fc703551b18d 100644 (file)
@@ -1 +1 @@
-20210919
+20210920
index ecc1a8edce0a0aab789a3ac37db4f9c7ba9ba27c..231055e15c68d554c50c295f081c4dc5fcae1e09 100644 (file)
@@ -1,3 +1,33 @@
+2021-09-19  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/102403
+       * gcc.dg/uninit-pr102403.c: New test.
+       * gcc.dg/uninit-pr102403-c2.c: New test.
+
+2021-09-19  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/102243
+       * g++.dg/warn/Wplacement-new-size-10.C: New test.
+
+2021-09-19  Jeff Law  <jeffreyalaw@gmail.com>
+
+       * gfortran.dg/goacc/privatization-1-compute.f90: Make test names
+       unique.
+       * gfortran.dg/goacc/routine-external-level-of-parallelism-2.f:
+       Likewise.
+
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * jit.dg/jit.exp (fixed_local_execute): Amend the match and
+       exit conditions to cater for more platforms.
+
+2021-09-19  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR middle-end/88173
+       * c-c++-common/pr57371-4.c: Tweak/correct test case for QNaNs.
+       * g++.dg/pr88173-1.C: New test case.
+       * g++.dg/pr88173-2.C: New test case.
+
 2021-09-18  Jakub Jelinek  <jakub@redhat.com>
 
        * c-c++-common/gomp/order-1.c (f2): Add tests for distribute
index abd38fe0b151293552efaefdfd8792836b8c368b..4a1b2619a5777ef881c75dde0bb8d6a8dd91400c 100644 (file)
@@ -1,3 +1,27 @@
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/t-slibgcc-darwin: Delete unused code.
+
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/i386/t-darwin: Add in a vers file for X86-specific
+       symbols.
+       * config/t-darwin: Add the generic symbol maps here...
+       * config/t-slibgcc-darwin: ... removing from here.
+       * config/i386/libgcc-darwin.ver: New file.
+
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/i386/t-softfp: Exclude libgcc2 versions of __divhc3
+       and __mulhc3.
+
+2021-09-19  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config.host: Use convenience library for Darwin10
+       unwinder shim.
+       * config/t-darwin: Build Darwin10 unwinder shim as a
+       convenience library.
+
 2021-09-13  Andrew Pinski  <apinski@marvell.com>
 
        * config.host: Remove m32r-*-linux* and m32rle-*-linux*.