aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog65
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/ada/ChangeLog4
-rw-r--r--gcc/cp/ChangeLog10
-rw-r--r--gcc/lto/ChangeLog5
5 files changed, 85 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b43b03d..67204af 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,68 @@
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * hash-map.h (put, get_or_insert): Check that added entry
+ doesn't look deleted either.
+ * hash-set.h (add): Likewise.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * tree-parloops.cc (take_address_of): Skip INSERT if !gsi.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * hash-map.h (put, get_or_insert): Check that entry does not
+ look empty after insertion.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * hash-set.h (add): Check that the inserted entry does not
+ look empty.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * trans-mem.cc (split_bb_make_tm_edge): Record new node in
+ tm_restart.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * postreload-gcse.cc (lookup_expr_in_table): Use NO_INSERT.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * tree-inline.cc (declare_return_variable): Don't remap NULL
+ default def of result.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * tree-ssa-loop-niter.cc (expand_simple_operands): Refrain
+ from caching NULL TREE_OPERANDs.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * tree-inline.cc (insert_decl_map): Skip mapping a NULL decl
+ as value to itself.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * varpool.cc (symbol_table::remove_unreferenced_decls): Do not
+ add NULL vnodes to referenced table.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * tree-ssa-scopedtables.cc
+ (avail_exprs_stack::lookup_avail_expr): Finish hash table
+ insertion before further lookups.
+
+2022-12-29 Max Filippov <jcmvbkbc@gmail.com>
+
+ * config/xtensa/xtensa.cc (xtensa_return_in_memory): Use
+ GP_RETURN_* instead of magic constant.
+
+2022-12-29 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
+
+ * config/xtensa/xtensa.cc (xtensa_expand_prologue): Fix to check
+ DF availability before use of DF_* macros.
+
2022-12-28 Roger Sayle <roger@nextmovesoftware.com>
* config/i386/i386.md (*clzsi2_lzcnt_zext_2): define_insn_and_split
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index cf083af..13c8be4 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221229
+20221230
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 7ecefd8..19c0a4d 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,7 @@
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * gcc-interface/trans.cc (Sloc_to_locus): Don't map NULL decl.
+
2022-12-06 Yannick Moy <moy@adacore.com>
* contracts.adb (Add_Contract_Item): Allow No_Caching on types.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index a824528..24ca96f 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,13 @@
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * constexpr.cc (cxx_eval_call_expression): Do not request an
+ INSERT that would not be completed.
+
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * constraint.cc (normalize_concept_check): Use NO_INSERT for
+ pre-insertion check.
+
2022-12-23 Patrick Palka <ppalka@redhat.com>
PR c++/108116
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index e88eaee..e24e330 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,8 @@
+2022-12-29 Alexandre Oliva <oliva@adacore.com>
+
+ * lto-partition.cc (lto_1_to_1_map): Drop NULL partition
+ mapping.
+
2022-12-22 Richard Biener <rguenther@suse.de>
* lto-common.cc (compare_tree_sccs_1): Compare DECL_NOT_FLEXARRAY.