]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 3 Apr 2024 00:21:21 +0000 (00:21 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Wed, 3 Apr 2024 00:21:21 +0000 (00:21 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libgcc/ChangeLog

index eab8557381210995afa49a3ad0b55d019b5a7af8..1cbcf912deb1fcf9a08b8b330230b2850b7783ab 100644 (file)
@@ -1,3 +1,12 @@
+2024-04-02  Qing Zhao  <qing.zhao@oracle.com>
+
+       Backported from master:
+       2023-09-15  Qing Zhao  <qing.zhao@oracle.com>
+
+       PR tree-optimization/111407
+       * tree-ssa-math-opts.cc (convert_mult_to_widen): Avoid the transform
+       when one of the operands is subject to abnormal coalescing.
+
 2024-04-01  Iain Sandoe  <iain@sandoe.co.uk>
 
        Backported from master:
index 2edad605e1d4426e12854fd02c23acc0245fdcdf..154a306dc5ca41ec4e90016c7ff75c02f81a88d7 100644 (file)
@@ -1 +1 @@
-20240402
+20240403
index a443e8fb87418afba62f0066a4af796f1b318874..4671fc84abd06a13c1f43724a43704b6ff44b3d4 100644 (file)
@@ -1,3 +1,12 @@
+2024-04-02  Marek Polacek  <polacek@redhat.com>
+
+       Backported from master:
+       2024-04-02  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/103825
+       * typeck.cc (is_bitfield_expr_with_lowered_type): Handle
+       CLEANUP_POINT_EXPR.
+
 2024-02-16  Marek Polacek  <polacek@redhat.com>
 
        Backported from master:
index 308c830e965ae77386d15b6ae92c3d3dd4a424c7..93466d21f6dc18efe7cedbc93519897f6c02c2dd 100644 (file)
@@ -1,3 +1,42 @@
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2024-03-06  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/103707
+       PR fortran/106987
+       * arith.cc (is_hard_arith_error): New helper function to determine
+       whether an arithmetic error is "hard" or not.
+       (check_result): Use it.
+       (gfc_arith_divide): Set "Division by zero" only for regular
+       numerators of real and complex divisions.
+       (reduce_unary): Use is_hard_arith_error to determine whether a hard
+       or (recoverable) soft error was encountered.  Terminate immediately
+       on hard error, otherwise remember code of first soft error.
+       (reduce_binary_ac): Likewise.
+       (reduce_binary_ca): Likewise.
+       (reduce_binary_aa): Likewise.
+
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2024-02-09  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/113799
+       * arith.cc (reduce_unary): Remember any overflow encountered during
+       reduction of unary arithmetic operations on array constructors and
+       continue, and return error status, but terminate on serious errors.
+
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2023-05-17  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95374
+       PR fortran/104352
+       * decl.cc (add_init_expr_to_sym): Set shape of initializer also for
+       zero-sized arrays, so that bounds violations can be detected later.
+
 2024-03-31  Mikael Morin  <mikael@gcc.gnu.org>
 
        Backported from master:
index 971ec62c198263fe808e14a2f398afb4ef83a90f..28ddb66a0c3421473da8027fe0633cef5ae3f26c 100644 (file)
@@ -1,3 +1,92 @@
+2024-04-02  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2023-10-02  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * g++.dg/debug/dwarf2/pr85550.C: Skip for Darwin.
+
+2024-04-02  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       Backported from master:
+       2023-09-08  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * gcc.dg/darwin-segaddr.c: Adjust for darwin linker warning.
+       * gcc.dg/pie-7.c: Likewise.
+
+2024-04-02  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       Backported from master:
+       2023-09-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR testsuite/111066
+       * g++.dg/special/initpri3.C: Fix wording.
+
+2024-04-02  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * jit.dg/test-setting-alignment.c:  Handle Darwin in
+       jit-verify-assemble output.
+
+2024-04-02  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * jit.dg/jit.exp: Accept target clauses in jit-verify-assembler
+       handling.
+
+2024-04-02  Iain Sandoe  <iain@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * jit.dg/test-link-section-assembler.c: Accept any whitespace
+       between the .section directive and its arguments.
+
+2024-04-02  Marek Polacek  <polacek@redhat.com>
+
+       Backported from master:
+       2024-04-02  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/103825
+       * g++.dg/cpp0x/enum44.C: New test.
+
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2024-03-06  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/103707
+       PR fortran/106987
+       * gfortran.dg/arithmetic_overflow_3.f90: New test.
+
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2024-02-09  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/113799
+       * gfortran.dg/arithmetic_overflow_2.f90: New test.
+
+2024-04-02  Harald Anlauf  <anlauf@gmx.de>
+
+       Backported from master:
+       2023-05-17  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/95374
+       PR fortran/104352
+       * gfortran.dg/zero_sized_13.f90: New test.
+
+2024-04-02  Qing Zhao  <qing.zhao@oracle.com>
+
+       Backported from master:
+       2023-09-15  Qing Zhao  <qing.zhao@oracle.com>
+
+       PR tree-optimization/111407
+       * gcc.dg/pr111407.c: New test.
+
 2024-04-01  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
        Backported from master:
index dbc7645a47c3f69fab82587647e48a753de755f7..7a93898bae09b03554e63dea78d526414e1de791 100644 (file)
@@ -1,3 +1,9 @@
+2024-04-02  Thomas Neumann  <tneumann@users.sourceforge.net>
+
+       PR libgcc/111731
+       * unwind-dw2-fde.c: Split unwind ranges if they contain the
+       unwind table.
+
 2024-02-16  Matteo Italia  <matteo@mitalia.net>
 
        Backported from master: