]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 25 Feb 2024 00:17:06 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 25 Feb 2024 00:17:06 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/objc/ChangeLog
gcc/testsuite/ChangeLog

index 3af0b7efc4f50ce6c7135c85cf5729adecb9791a..fa9dd7420b7cb25fb45e32f18334074e92117d38 100644 (file)
@@ -1,3 +1,47 @@
+2024-02-24  Richard Sandiford  <richard.sandiford@arm.com>
+
+       PR tree-optimization/113205
+       * tree-vect-slp.cc (vect_optimize_slp_pass::forward_cost): Reject
+       the proposed layout if it does not allow a source partition with
+       layout 2 to keep that layout.
+
+2024-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+       * builtins.cc (fold_builtin_isascii): Use HOST_WIDE_INT_UC macro.
+       * combine.cc (make_field_assignment): Use HOST_WIDE_INT_1U macro.
+       * double-int.cc (double_int::mask): Use HOST_WIDE_INT_UC macros.
+       * genattrtab.cc (attr_alt_complement): Use HOST_WIDE_INT_1 macro.
+       (mk_attr_alt): Use HOST_WIDE_INT_0 macro.
+       * genautomata.cc (bitmap_set_bit, CLEAR_BIT): Use HOST_WIDE_INT_1
+       macros.
+       * ipa-strub.cc (can_strub_internally_p): Use HOST_WIDE_INT_1 macro.
+       * loop-iv.cc (implies_p): Use HOST_WIDE_INT_1U macro.
+       * pretty-print.cc (test_pp_format): Use HOST_WIDE_INT_C and
+       HOST_WIDE_INT_UC macros.
+       * rtlanal.cc (nonzero_bits1): Use HOST_WIDE_INT_UC macro.
+       * tree.cc (build_replicated_int_cst): Use HOST_WIDE_INT_1U macro.
+       * tree.h (DECL_OFFSET_ALIGN): Use HOST_WIDE_INT_1U macro.
+       * tree-ssa-structalias.cc (dump_varinfo): Use ~HOST_WIDE_INT_0U
+       macros.
+       * wide-int.cc (divmod_internal_2): Use HOST_WIDE_INT_1U macro.
+       * config/i386/constraints.md (define_constraint "L"): Use
+       HOST_WIDE_INT_C macro.
+       * config/i386/i386.md (movabsq split peephole2): Use HOST_WIDE_INT_C
+       macro.
+       (movl + movb peephole2): Likewise.
+       * config/i386/predicates.md (x86_64_zext_immediate_operand): Likewise.
+       (const_32bit_mask): Likewise.
+
+2024-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/114073
+       * gimple-lower-bitint.cc (bitint_large_huge::lower_stmt): Handle
+       VIEW_CONVERT_EXPRs between large/huge _BitInt and non-integer/pointer
+       types like vector or complex types.
+       (gimple_lower_bitint): Don't merge VIEW_CONVERT_EXPRs to non-integral
+       types.  Fix up VIEW_CONVERT_EXPR handling.  Allow merging
+       VIEW_CONVERT_EXPR from non-integral/pointer types with a store.
+
 2024-02-23  Robin Dapp  <rdapp@ventanamicro.com>
 
        PR target/114028
index 4e5d4ad243a9072b27d98d1fa19cacf49a054dbe..ff71cb447c3fab64b7fd05b6c55c760573ce9526 100644 (file)
@@ -1 +1 @@
-20240224
+20240225
index 2a4231d4536b9efc7320190abbf4238828ce8acf..3cc5d60812363315645a3fbbbd96fb8b3f9a6b18 100644 (file)
@@ -1,3 +1,7 @@
+2024-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+       * objc-encoding.cc (encode_array): Use HOST_WIDE_INT_0 macros.
+
 2024-01-28  Iain Sandoe  <iain@sandoe.co.uk>
 
        * objc-next-runtime-abi-02.cc (build_v2_address_table): Prevent
index 669978d827303dc7fee0cb1176bb633137587240..48e6fb683417fc0311df6cacb1d43283949308c6 100644 (file)
@@ -1,3 +1,17 @@
+2024-02-24  Richard Sandiford  <richard.sandiford@arm.com>
+
+       PR tree-optimization/113205
+       * gcc.dg/torture/pr113205.c: New test.
+
+2024-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/114073
+       * gcc.dg/bitint-93.c: New test.
+
+2024-02-24  Richard Sandiford  <richard.sandiford@arm.com>
+
+       * gcc.dg/rtl/aarch64/pr113295-1.c: Restrict to aarc64*-*-*.
+
 2024-02-23  Steve Kargl  <kargl@gcc.gnu.org>
            Harald Anlauf  <anlauf@gmx.de>