diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2f46eb0fd1925102c4c56414bf0801bfea169c8c..8cd8d075ac48014aaa10d3e8ed058361c039d2e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,61 @@ +2023-02-08 Gerald Pfeifer <gerald@pfeifer.com> + + * doc/include/gpl_v3.texi: Change fsf.org to www.fsf.org. + +2023-02-08 Srinath Parvathaneni <srinath.parvathaneni@arm.com> + + PR target/108505 + * config.gcc (tm_mlib_file): Define new variable. + +2023-02-08 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/108692 + * tree-vect-patterns.cc (vect_widened_op_tree): If rhs_code is + widened_code which is different from code, don't call + vect_look_through_possible_promotion but instead just check op is + SSA_NAME with integral type for which vect_is_simple_use is true + and call set_op on this_unprom. + +2023-02-08 Andrea Corallo <andrea.corallo@arm.com> + + * config/aarch64/aarch64-protos.h (aarch_ra_sign_key): Remove + declaration. + * config/aarch64/aarch64.cc (aarch_ra_sign_key): Remove + definition. + * config/aarch64/aarch64.opt (aarch64_ra_sign_key): Rename + to 'aarch_ra_sign_key'. + * config/arm/aarch-common.cc (aarch_ra_sign_key): Remove + declaration. + * config/arm/arm-protos.h (aarch_ra_sign_key): Likewise. + * config/arm/arm.cc (enum aarch_key_type): Remove definition. + * config/arm/arm.opt: Define. + +2023-02-08 Richard Sandiford <richard.sandiford@arm.com> + + PR tree-optimization/108316 + * tree-vect-stmts.cc (get_load_store_type): When using + internal functions for gather/scatter, make sure that the type + of the offset argument is consistent with the offset vector type. + +2023-02-08 Vladimir N. Makarov <vmakarov@redhat.com> + + Revert: + 2023-02-07 Vladimir N. Makarov <vmakarov@redhat.com> + + * ira.h (struct ira_reg_equiv_s): Add new field caller_save_p. + * ira.cc (validate_equiv_mem): Check memref address variance. + (update_equiv_regs): Define caller save equivalence for + valid_combine. + (setup_reg_equiv): Clear defined_p flag for caller save equivalence. + * lra-constraints.cc (lra_copy_reg_equiv): Add new arg + call_save_p. Use caller save equivalence depending on the arg. + (split_reg): Adjust the call. + +2023-02-08 Jakub Jelinek <jakub@redhat.com> + + * tree.def (SAD_EXPR): Remove outdated comment about missing + WIDEN_MINUS_EXPR. + 2023-02-07 Marek Polacek <polacek@redhat.com> * doc/invoke.texi: Update -fchar8_t documentation. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index a48b5a401cfd411c41f250a7af0ad2a0f7c174e9..afa750637c5539542f446b1cd984410a6fc5e1b3 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230208 +20230209 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index 107ca05adfbdfc9b35e8fe0372fc3af42ee28e19..dcd1cf55389301b73ea6b982a318e747c9522ff5 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,10 @@ +2023-02-08 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/108704 + * state-purge.cc (state_purge_per_decl::process_point_backwards): + Don't stop processing the decl if it's fully overwritten by + this stmt if it's also used by this stmt. + 2023-02-07 David Malcolm <dmalcolm@redhat.com> PR analyzer/108661 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index f8769e8c53a82a0e679bf6777c2d25c446fd555c..498c33124d16adacd00a14d94ff48dd778d015a9 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,10 @@ +2023-02-08 Joseph Myers <joseph@codesourcery.com> + + * c-typeck.cc (check_constexpr_init): Remove argument + null_pointer_constant. Only check pointer initializers for being + null. + (digest_init): Update calls to check_constexpr_init. + 2023-02-02 Joseph Myers <joseph@codesourcery.com> * c-typeck.cc (build_binary_op): Allow comparisons between diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 77484ff984e4d2d7cf0039d67d851fb453b281e4..99ee582a87f09c414a847bf4fdec0e600ea531fb 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2023-02-08 Steve Kargl <kargl@gcc.gnu.org> + + PR fortran/103259 + * resolve.cc (resolve_common_vars): Avoid NULL pointer dereference + when a symbol's location is not set. + 2023-02-07 Harald Anlauf <anlauf@gmx.de> PR fortran/95107 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e150cd9de3d7775ae4aeef74dc992d6fc36380de..81eeb459c3f6bcebe07ddec698d1839cc95de803 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,55 @@ +2023-02-08 Joseph Myers <joseph@codesourcery.com> + + * gcc.dg/c2x-constexpr-1.c: Test initialization of constexpr + pointers with null values that are not null pointer constants. + * gcc.dg/c2x-constexpr-3.c: Test initialization of constexpr + pointers with non-null values, not with null values that are not + null pointer constants. + +2023-02-08 Hans-Peter Nilsson <hp@axis.com> + + * gcc.dg/torture/pr100398.c: Limit to lra targets. + * gcc.dg/pr100590.c: Ditto. + +2023-02-08 David Malcolm <dmalcolm@redhat.com> + + PR analyzer/108704 + * gcc.dg/analyzer/uninit-7.c: New test. + * gcc.dg/analyzer/uninit-pr108704.c: New test. + +2023-02-08 Steve Kargl <kargl@gcc.gnu.org> + + PR fortran/103259 + * gfortran.dg/pr103259.f90: New test. + +2023-02-08 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/108692 + * gcc.dg/pr108692.c: New test. + +2023-02-08 Richard Sandiford <richard.sandiford@arm.com> + + * objc/execute/execute.exp: Load objc-dg.exp. + +2023-02-08 Richard Sandiford <richard.sandiford@arm.com> + + PR tree-optimization/108316 + * gcc.dg/vect/pr108316.c: New test. + +2023-02-08 Vladimir N. Makarov <vmakarov@redhat.com> + + Revert: + 2023-02-08 Vladimir N. Makarov <vmakarov@redhat.com> + + * gcc.target/i386/pr103541.c: New. + +2023-02-08 Jakub Jelinek <jakub@redhat.com> + + PR c++/108525 + * g++.dg/cpp23/static-operator-call5.C: Move PR108525 testcase + incorrectly applied into PR108526 testcase ... + * g++.dg/cpp23/static-operator-call6.C: ... here. New test. + 2023-02-07 David Malcolm <dmalcolm@redhat.com> PR analyzer/108661