aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog58
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/analyzer/ChangeLog7
-rw-r--r--gcc/c/ChangeLog7
-rw-r--r--gcc/fortran/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog52
6 files changed, 131 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2f46eb0..8cd8d07 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 a48b5a4..afa7506 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230208
+20230209
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index 107ca05..dcd1cf5 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 f8769e8..498c331 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 77484ff..99ee582 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 e150cd9..81eeb45 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