diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 74316075782..030c97cb60c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,31 @@ +2023-07-02 Jakub Jelinek + + PR tree-optimization/110508 + * tree-ssa-math-opts.cc (match_uaddc_usubc): Only replace re2 with + REALPART_EXPR opf nlhs if re2 is non-NULL. + +2023-07-02 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.cc (xtensa_match_CLAMPS_imms_p): + Simplify. + * config/xtensa/xtensa.md (*xtensa_clamps): + Add TARGET_MINMAX to the condition. + +2023-07-02 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.md (*eqne_INT_MIN): + Add missing ":SI" to the match_operator. + +2023-07-02 Iain Sandoe + + PR target/108743 + * config/darwin.opt: Add fconstant-cfstrings alias to + mconstant-cfstrings. + * doc/invoke.texi: Amend invocation descriptions to reflect + that the fconstant-cfstrings is a target-option alias and to + add the missing mconstant-cfstrings option description to the + Darwin section. + 2023-07-01 Jan Hubicka * tree-cfg.cc (gimple_duplicate_sese_region): Add elliminated_edge diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index ae3ab38a574..4686be8f754 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230702 +20230703 diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index f1b91c686c9..750b848c10f 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,10 @@ +2023-07-02 Iain Buclaw + + PR d/110516 + * intrinsics.cc (expand_volatile_load): Set TREE_SIDE_EFFECTS on the + expanded expression. + (expand_volatile_store): Likewise. + 2023-07-01 Iain Buclaw PR d/110514 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a9dcfad61bb..235915ed544 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,23 @@ +2023-07-02 Iain Buclaw + + * gdc.dg/Wbuiltin_declaration_mismatch2.d: Fix failed tests. + +2023-07-02 Jakub Jelinek + + PR tree-optimization/110508 + * gcc.dg/pr110508.c: New test. + +2023-07-02 Iain Buclaw + + PR d/108962 + * gdc.dg/pr108962.d: New test. + +2023-07-02 Iain Buclaw + + PR d/110516 + * gdc.dg/torture/pr110516a.d: New test. + * gdc.dg/torture/pr110516b.d: New test. + 2023-07-01 Iain Buclaw PR d/110514 diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index f768d42673f..085c3629788 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,11 @@ +2023-07-02 Iain Sandoe + + * libdruntime/config/aarch64/switchcontext.S: Exclude ELF- + specific constructs for Darwin. + * libdruntime/config/arm/switchcontext.S: Likewise. + * libdruntime/core/thread/fiber.d: Disable switching fibres + between threads. + 2023-07-01 Iain Sandoe PR d/103944