public inbox for gccadmin@sourceware.org
help / color / mirror / Atom feed
* [PATCH 5/5] Daily bump.
       [not found] <20230103090714.3407637-1-lin1.hu@intel.com>
@ 2023-01-03  9:07 ` Hu, Lin1
  2023-01-03  9:09   ` Hu, Lin1
  0 siblings, 1 reply; 2+ messages in thread
From: Hu, Lin1 @ 2023-01-03  9:07 UTC (permalink / raw)
  To: lin1.hu; +Cc: GCC Administrator

From: GCC Administrator <gccadmin@gcc.gnu.org>

---
 gcc/ChangeLog     | 65 +++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP     |  2 +-
 gcc/ada/ChangeLog |  4 +++
 gcc/cp/ChangeLog  | 10 ++++++++
 gcc/lto/ChangeLog |  5 ++++
 5 files changed, 85 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b43b03d06c4..67204af145b 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 cf083afb247..13c8be464ab 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221229
+20221230
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 7ecefd88ba4..19c0a4d5d42 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 a8245283705..24ca96fe210 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 e88eaee2a61..e24e330b94d 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.
-- 
2.18.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: [PATCH 5/5] Daily bump.
  2023-01-03  9:07 ` [PATCH 5/5] Daily bump Hu, Lin1
@ 2023-01-03  9:09   ` Hu, Lin1
  0 siblings, 0 replies; 2+ messages in thread
From: Hu, Lin1 @ 2023-01-03  9:09 UTC (permalink / raw)
  To: GCC Administrator

Sorry for this mail. I enter the wrong command line. 

-----Original Message-----
From: Hu, Lin1 <lin1.hu@intel.com> 
Sent: Tuesday, January 3, 2023 5:07 PM
To: Hu, Lin1 <lin1.hu@intel.com>
Cc: GCC Administrator <gccadmin@gcc.gnu.org>
Subject: [PATCH 5/5] Daily bump.

From: GCC Administrator <gccadmin@gcc.gnu.org>

---
 gcc/ChangeLog     | 65 +++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP     |  2 +-
 gcc/ada/ChangeLog |  4 +++
 gcc/cp/ChangeLog  | 10 ++++++++
 gcc/lto/ChangeLog |  5 ++++
 5 files changed, 85 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b43b03d06c4..67204af145b 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 cf083afb247..13c8be464ab 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221229
+20221230
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 7ecefd88ba4..19c0a4d5d42 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 a8245283705..24ca96fe210 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 e88eaee2a61..e24e330b94d 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.
--
2.18.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-03  9:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230103090714.3407637-1-lin1.hu@intel.com>
2023-01-03  9:07 ` [PATCH 5/5] Daily bump Hu, Lin1
2023-01-03  9:09   ` Hu, Lin1

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).