]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 5 Jun 2023 00:16:57 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 5 Jun 2023 00:16:57 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 9c1f2e2f029a0b9cc83fa9586d18c305d6aa498c..ef27a12b88032e2459d8ea3a084394bc8f953559 100644 (file)
@@ -1,3 +1,98 @@
+2023-06-04  Andrew Pinski  <apinski@marvell.com>
+
+       * expr.cc (do_store_flag): Improve for single bit testing
+       not against zero but against that single bit.
+
+2023-06-04  Andrew Pinski  <apinski@marvell.com>
+
+       * expr.cc (do_store_flag): Extend the one bit checking case
+       to handle the case where we don't have an and but rather still
+       one bit is known to be non-zero.
+
+2023-06-04  Jeff Law  <jlaw@ventanamicro.com>
+
+       * config/h8300/constraints.md (Zz): Make this a normal
+       constraint.
+       * config/h8300/h8300.cc (TARGET_LRA_P): Remove.
+       * config/h8300/logical.md (H8/SX bit patterns): Remove.
+
+2023-06-04  Takayuki 'January June' Suwa  <jjsuwa_sys3175@yahoo.co.jp>
+
+       * config/xtensa/xtensa.md (*btrue_INT_MIN, *eqne_INT_MIN):
+       New insn_and_split patterns.
+
+2023-06-04  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110109
+       * config/riscv/riscv-vector-builtins-bases.cc: Change expand approach.
+       * config/riscv/vector.md (@vlmul_extx2<mode>): Remove it.
+       (@vlmul_extx4<mode>): Ditto.
+       (@vlmul_extx8<mode>): Ditto.
+       (@vlmul_extx16<mode>): Ditto.
+       (@vlmul_extx32<mode>): Ditto.
+       (@vlmul_extx64<mode>): Ditto.
+       (*vlmul_extx2<mode>): Ditto.
+       (*vlmul_extx4<mode>): Ditto.
+       (*vlmul_extx8<mode>): Ditto.
+       (*vlmul_extx16<mode>): Ditto.
+       (*vlmul_extx32<mode>): Ditto.
+       (*vlmul_extx64<mode>): Ditto.
+
+2023-06-04  Pan Li  <pan2.li@intel.com>
+
+       * config/riscv/riscv-vector-builtins-types.def
+       (vfloat32mf2_t): Add vfloat32mf2_t type to vfncvt.f.f.w operations.
+       (vfloat32m1_t): Likewise.
+       (vfloat32m2_t): Likewise.
+       (vfloat32m4_t): Likewise.
+       (vfloat32m8_t): Likewise.
+       * config/riscv/riscv-vector-builtins.def: Fix typo in comments.
+       * config/riscv/vector-iterators.md: Add single to half machine
+       mode conversion.
+
+2023-06-04  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       * config/riscv/autovec-opt.md (*<optab>not<mode>): Move to autovec-opt.md.
+       (*n<optab><mode>): Ditto.
+       * config/riscv/autovec.md (*<optab>not<mode>): Ditto.
+       (*n<optab><mode>): Ditto.
+       * config/riscv/vector.md: Ditto.
+
+2023-06-04  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR target/110083
+       * config/i386/i386-features.cc (scalar_chain::convert_compare):
+       Update or delete REG_EQUAL notes, converting CONST_INT and
+       CONST_WIDE_INT immediate operands to a suitable CONST_VECTOR.
+
+2023-06-04  Jason Merrill  <jason@redhat.com>
+
+       PR c++/97720
+       * tree-eh.cc (lower_resx): Pass the exception pointer to the
+       failure_decl.
+       * except.h: Tweak comment.
+
+2023-06-04  Hans-Peter Nilsson  <hp@axis.com>
+
+       * postreload.cc (move2add_use_add2_insn): Handle
+       trivial single_sets.  Rename variable PAT to SET.
+       (move2add_use_add3_insn, reload_cse_move2add): Similar.
+
+2023-06-04  Pan Li  <pan2.li@intel.com>
+
+       * config/riscv/riscv-vector-builtins-types.def
+       (vfloat16mf4_t): Add the float16 type to DEF_RVV_F_OPS.
+       (vfloat16mf2_t): Likewise.
+       (vfloat16m1_t): Likewise.
+       (vfloat16m2_t): Likewise.
+       (vfloat16m4_t): Likewise.
+       (vfloat16m8_t): Likewise.
+       * config/riscv/riscv.md: Add vfloat16*_t to attr mode.
+       * config/riscv/vector-iterators.md: Add vfloat16*_t machine mode
+       to V, V_WHOLE, V_FRACT, VINDEX, VM, VEL and sew.
+       * config/riscv/vector.md: Add vfloat16*_t machine mode to sew,
+       vlmul and ratio.
+
 2023-06-03  Fei Gao  <gaofei@eswincomputing.com>
 
        * config/riscv/riscv.cc (riscv_expand_epilogue): fix cfi issue with
index a5bdb7bdd096be3b00cb3ec46a60070fc2b38a83..3e73975bf5e4026bc6868be3c9f03246cce25776 100644 (file)
@@ -1 +1 @@
-20230604
+20230605
index 1d0329484f983a39d5f5365e63b0fea290766b93..7f57c1a3475a776812e01b559aff42e69fe559f0 100644 (file)
@@ -1,3 +1,12 @@
+2023-06-04  Jason Merrill  <jason@redhat.com>
+
+       PR c++/97720
+       * cp-tree.h (enum cp_tree_index): Add CPTI_CALL_TERMINATE_FN.
+       (call_terminate_fn): New macro.
+       * cp-gimplify.cc (gimplify_must_not_throw_expr): Use it.
+       * except.cc (init_exception_processing): Set it.
+       (cp_protect_cleanup_actions): Return it.
+
 2023-06-03  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/109923
index 53b96d2dabbf86766f16eef7043db8f14830fbe1..811f990181bc1a543db7d0153babfe9a724732dc 100644 (file)
@@ -1,3 +1,28 @@
+2023-06-04  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110109
+       * gcc.target/riscv/rvv/base/pr110109-1.c: New test.
+       * gcc.target/riscv/rvv/base/pr110109-2.c: New test.
+
+2023-06-04  Pan Li  <pan2.li@intel.com>
+
+       * gcc.target/riscv/rvv/base/zvfhmin-intrinsic.c: New test.
+
+2023-06-04  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR target/110083
+       * gcc.target/i386/pr110083.c: New test case.
+
+2023-06-04  Jason Merrill  <jason@redhat.com>
+
+       PR c++/97720
+       * g++.dg/eh/terminate2.C: New test.
+
+2023-06-04  Pan Li  <pan2.li@intel.com>
+
+       * gcc.target/riscv/rvv/base/mov-14.c: New test.
+       * gcc.target/riscv/rvv/base/spill-13.c: New test.
+
 2023-06-03  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/109923
index b653062949095dc6d9ed59dfa28e01f23b844efc..31c1704aaee86b956bf0f418f84a6f2dad2ab61f 100644 (file)
@@ -1,3 +1,9 @@
+2023-06-04  Jason Merrill  <jason@redhat.com>
+
+       PR c++/97720
+       * libsupc++/eh_call.cc (__cxa_call_terminate): Take void*.
+       * config/abi/pre/gnu.ver: Add it.
+
 2023-06-02  François Dumont  <fdumont@gcc.gnu.org>
 
        * include/parallel/algobase.h: Include <parallel/search.h>.