diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9c1f2e2f029..ef27a12b880 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,98 @@ +2023-06-04 Andrew Pinski + + * expr.cc (do_store_flag): Improve for single bit testing + not against zero but against that single bit. + +2023-06-04 Andrew Pinski + + * 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 + + * 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 + + * config/xtensa/xtensa.md (*btrue_INT_MIN, *eqne_INT_MIN): + New insn_and_split patterns. + +2023-06-04 Juzhe-Zhong + + PR target/110109 + * config/riscv/riscv-vector-builtins-bases.cc: Change expand approach. + * config/riscv/vector.md (@vlmul_extx2): Remove it. + (@vlmul_extx4): Ditto. + (@vlmul_extx8): Ditto. + (@vlmul_extx16): Ditto. + (@vlmul_extx32): Ditto. + (@vlmul_extx64): Ditto. + (*vlmul_extx2): Ditto. + (*vlmul_extx4): Ditto. + (*vlmul_extx8): Ditto. + (*vlmul_extx16): Ditto. + (*vlmul_extx32): Ditto. + (*vlmul_extx64): Ditto. + +2023-06-04 Pan Li + + * 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 + + * config/riscv/autovec-opt.md (*not): Move to autovec-opt.md. + (*n): Ditto. + * config/riscv/autovec.md (*not): Ditto. + (*n): Ditto. + * config/riscv/vector.md: Ditto. + +2023-06-04 Roger Sayle + + 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 + + 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 + + * 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 + + * 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 * config/riscv/riscv.cc (riscv_expand_epilogue): fix cfi issue with diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a5bdb7bdd09..3e73975bf5e 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230604 +20230605 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1d0329484f9..7f57c1a3475 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,12 @@ +2023-06-04 Jason Merrill + + 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 PR c++/109923 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 53b96d2dabb..811f990181b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,28 @@ +2023-06-04 Juzhe-Zhong + + 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 + + * gcc.target/riscv/rvv/base/zvfhmin-intrinsic.c: New test. + +2023-06-04 Roger Sayle + + PR target/110083 + * gcc.target/i386/pr110083.c: New test case. + +2023-06-04 Jason Merrill + + PR c++/97720 + * g++.dg/eh/terminate2.C: New test. + +2023-06-04 Pan Li + + * 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 PR c++/109923 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b6530629490..31c1704aaee 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2023-06-04 Jason Merrill + + 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 * include/parallel/algobase.h: Include .