]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 10 Feb 2024 00:17:14 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 10 Feb 2024 00:17:14 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libcc1/ChangeLog
libgcc/ChangeLog
libstdc++-v3/ChangeLog

index 1018b0e17eef769e71b89df361028a343afc364f..5d47b031efb6becfefa0fafb33acdbd50308daba 100644 (file)
@@ -1,3 +1,50 @@
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113783
+       * gimple-lower-bitint.cc (bitint_large_huge::lower_stmt): Look
+       through VIEW_CONVERT_EXPR for final cast checks.  Handle
+       VIEW_CONVERT_EXPRs from large/huge _BitInt to > MAX_FIXED_MODE_SIZE
+       INTEGER_TYPEs.
+       (gimple_lower_bitint): Don't merge mergeable operations or other
+       casts with VIEW_CONVERT_EXPRs to > MAX_FIXED_MODE_SIZE INTEGER_TYPEs.
+       * expr.cc (expand_expr_real_1): Don't use convert_modes if either
+       mode is BLKmode.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       * hwint.h (GCC_PRISZ, fmt_size_t, HOST_SIZE_T_PRINT_DEC,
+       HOST_SIZE_T_PRINT_UNSIGNED, HOST_SIZE_T_PRINT_HEX,
+       HOST_SIZE_T_PRINT_HEX_PURE): Define.
+       * ira-conflicts.cc (build_conflict_bit_table): Use it.  Formatting
+       fixes.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/113415
+       * cfgexpand.cc (expand_asm_stmt): For asm goto, use
+       duplicate_insn_chain to duplicate after_rtl_seq sequence instead
+       of hand written loop with emit_insn of copy_insn and emit original
+       after_rtl_seq on the last edge.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113818
+       * gimple-lower-bitint.cc (add_eh_edge): New function.
+       (bitint_large_huge::handle_load,
+       bitint_large_huge::lower_mergeable_stmt,
+       bitint_large_huge::lower_muldiv_stmt): Use it.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113774
+       * gimple-lower-bitint.cc (bitint_large_huge::handle_cast): Don't
+       emit any comparison if m_first and low + 1 is equal to
+       m_upwards_2limb, simplify condition for that.  If not
+       single_comparison, not m_first and we can prove that the idx <= low
+       comparison will be always true, emit instead of idx <= low
+       comparison low <= low such that cfg cleanup will optimize it at
+       the end of the pass.
+
 2024-02-08  Aldy Hernandez  <aldyh@redhat.com>
 
        PR tree-optimization/113735
index 9622c04647db2b53d0d5544792b69dfa8c4a5d2b..ab010dc453226b6de33461b6cb549e9c894642a4 100644 (file)
@@ -1 +1 @@
-20240209
+20240210
index 9f8ef7b09d42f511f6e4fffd42187cf31c104048..1c22e0346f0bf18985cd3d8dcef1fa771474259c 100644 (file)
@@ -1,3 +1,31 @@
+2024-02-09  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/113834
+       * semantics.cc (finish_type_pack_element): Perform range checking
+       before tree_to_shwi.
+
+2024-02-09  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/98388
+       * coroutines.cc (coro_rewrite_function_body): Pass tf_warning_or_error
+       to build_throw.
+       (morph_fn_to_coro): Likewise.
+       * cp-tree.h (build_throw): Adjust.
+       * except.cc (expand_end_catch_block): Pass tf_warning_or_error to
+       build_throw.
+       (build_throw): Add a tsubst_flags_t parameter.  Use it.  Remove
+       redundant variable.  Guard an inform call.
+       * parser.cc (cp_parser_throw_expression): Pass tf_warning_or_error
+       to build_throw.
+       * pt.cc (tsubst_expr) <case THROW_EXPR>: Pass complain to build_throw.
+
+2024-02-09  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/112580
+       * module.cc (trees_in::read_class_def): When streaming in
+       an anonymous union field of an as-base class, don't overwrite
+       ANON_AGGR_TYPE_FIELD.
+
 2024-02-08  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/113649
index 22ca08d43827d4045d9ce93fa3e05597b87da3e8..67f732f7fdb583ccb9795cf0e7b12d49a88889f1 100644 (file)
@@ -1,3 +1,10 @@
+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-01-28  Harald Anlauf  <anlauf@gmx.de>
 
        PR fortran/113377
index 9ffdfcb7ef5a7d42f2984b0a52c2a384230985db..a835393c60a65565a66b2266bb0bd8e23139946d 100644 (file)
@@ -1,3 +1,49 @@
+2024-02-09  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/113834
+       * g++.dg/ext/type_pack_element4.C: New test.
+
+2024-02-09  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/98388
+       * g++.dg/cpp0x/sfinae69.C: New test.
+
+2024-02-09  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/113799
+       * gfortran.dg/arithmetic_overflow_2.f90: New test.
+
+2024-02-09  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/112580
+       * g++.dg/modules/anon-3_a.H: New test.
+       * g++.dg/modules/anon-3_b.C: New test.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113783
+       * gcc.dg/bitint-88.c: New test.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/113415
+       * gcc.target/i386/pr113415.c: New test.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113818
+       * gcc.dg/bitint-89.c: New test.
+
+2024-02-09  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/113774
+       * gcc.dg/torture/bitint-57.c: New test.
+
+2024-02-09  Torbjörn SVENSSON  <torbjorn.svensson@foss.st.com>
+
+       * gcc.misc-tests/options.exp: Allow other options before the
+       -quite option for cc1.
+
 2024-02-08  Edwin Lu  <ewlu@rivosinc.com>
 
        * gcc.target/riscv/rvv/base/abi-1.c: change selector
index 746e3c48d0cbf96ac2f45497d9ced60c64965cd9..f81fe389e7115420d37b3c79a28c2d9e0b2ea5b0 100644 (file)
@@ -1,3 +1,9 @@
+2024-02-09  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/98388
+       * libcp1plugin.cc (plugin_build_unary_expr): Pass tf_error to
+       build_throw.
+
 2024-01-09  waffl3x  <waffl3x@protonmail.com>
            Jason Merrill  <jason@redhat.com>
 
index a2dae858307837688200d15bfd1aeb10a62cea7f..79bf6f3ca8e1449054bbeefcb3280332348ab2d1 100644 (file)
@@ -1,3 +1,8 @@
+2024-02-09  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/i386/libgcc-darwin.ver: Export bf and bitint-related
+       synbols.
+
 2024-02-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        PR target/113700
index 2dc435e044cb473a692769034dcd8b49862b0705..7b65abaf5f6a99088b96f16378bb79132070cbc7 100644 (file)
@@ -1,3 +1,12 @@
+2024-02-09  Ken Matsui  <kmatsui@gcc.gnu.org>
+
+       * include/bits/c++config (_GLIBCXX_HAVE_BUILTIN_IS_SAME):
+       Removed.
+       * include/std/type_traits (is_same): Use
+       _GLIBCXX_USE_BUILTIN_TRAIT instead of
+       _GLIBCXX_HAVE_BUILTIN_IS_SAME.
+       (is_same_v): Likewise.
+
 2024-02-08  Jonathan Wakely  <jwakely@redhat.com>
 
        * include/bits/shared_ptr_atomic.h: Fix typo in comment.