public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-2026] Daily bump.
@ 2022-08-12  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-08-12  0:17 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:5cd525f05cebef6c1f4d785c804f732608a67443

commit r13-2026-g5cd525f05cebef6c1f4d785c804f732608a67443
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Fri Aug 12 00:17:02 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 40 ++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/analyzer/ChangeLog  |  7 +++++++
 gcc/c-family/ChangeLog  |  6 ++++++
 gcc/c/ChangeLog         |  9 +++++++++
 gcc/cp/ChangeLog        |  5 +++++
 gcc/testsuite/ChangeLog | 44 ++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 112 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5f55323c770..cb74455c2b6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,43 @@
+2022-08-11  Richard Biener  <rguenther@suse.de>
+
+	* gimple-range-path.cc (path_range_query::compute_imports):
+	Restrict walking SSA defs to blocks inside the path.  Track
+	the same operands as range_def_chain::get_def_chain does.
+
+2022-08-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106514
+	* tree-ssa-threadbackward.cc (back_threader::find_paths_to_names):
+	Compute and unwind both m_imports and interesting on the fly during
+	path discovery.
+	(back_threader::find_paths): Compute the original m_imports
+	from just the SSA uses of the exit conditional.  Drop
+	handling single_succ_to_potentially_threadable_block.
+	* gimple-range-path.cc (path_range_query::ssa_range_in_phi): Handle
+	constant PHI arguments without crashing.  Use PHI_ARG_DEF_FROM_EDGE.
+
+2022-08-11  Richard Biener  <rguenther@suse.de>
+
+	* gimple-range-path.h (path_range_query::compute_imports):
+	Take path as argument, not the exit block.
+	* gimple-range-path.cc (path_range_query::compute_imports):
+	Likewise, and adjust, avoiding possibly stale m_path.
+	(path_range_query::compute_outgoing_relations): Register
+	relations for all conditionals.
+	* tree-ssa-threadbackward.cc (back_threader::find_paths):
+	Adjust.
+
+2022-08-11  Kewen Lin  <linkw@linux.ibm.com>
+
+	* config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Fix the
+	oversight on ENB_CELL by simplifying with rs6000_builtin_is_supported.
+	(rs6000_expand_builtin): Simplify with rs6000_builtin_is_supported.
+
+2022-08-11  Kewen Lin  <linkw@linux.ibm.com>
+
+	* config/rs6000/rs6000-internal.h (rs6000_global_entry_point_needed_p):
+	Remove function declaration.
+
 2022-08-10  Richard Biener  <rguenther@suse.de>
 
 	PR tree-optimization/106513
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 015f4ab35a3..1c5d419104a 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220811
+20220812
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index b16971b9eaf..f44c5eb563f 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,10 @@
+2022-08-11  Immad Mir  <mirimmad@outlook.com>
+
+	PR analyzer/106551
+	* sm-fd.cc (check_for_dup): handle the m_start
+	state when transitioning the state of LHS
+	of dup, dup2 and dup3 call.
+
 2022-08-09  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/106573
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 63277a514eb..fea41f48966 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,9 @@
+2022-08-11  Marek Polacek  <polacek@redhat.com>
+
+	PR middle-end/102633
+	* c-gimplify.cc (c_gimplify_expr) <case DECL_EXPR>: Don't call
+	suppress_warning here.
+
 2022-08-08  Tom Honermann  <tom@honermann.net>
 
 	PR preprocessor/106426
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index b5ecf9269e6..985c96c0a4a 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,12 @@
+2022-08-11  Marek Polacek  <polacek@redhat.com>
+
+	PR middle-end/102633
+	* c-parser.cc (c_parser_initializer): Add new tree parameter.  Use it.
+	Call suppress_warning.
+	(c_parser_declaration_or_fndef): Pass d down to c_parser_initializer.
+	(c_parser_omp_declare_reduction): Pass omp_priv down to
+	c_parser_initializer.
+
 2022-08-08  Tom Honermann  <tom@honermann.net>
 
 	* c-parser.cc (c_parser_string_literal): Use char8_t as the type
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index ed83b97df57..06ca1a4425f 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2022-08-11  Marek Polacek  <polacek@redhat.com>
+
+	PR middle-end/102633
+	* decl.cc (cp_finish_decl): Call suppress_warning.
+
 2022-08-07  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/88174
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f64dfc1684b..11b23bc7368 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,47 @@
+2022-08-11  David Edelsohn  <dje.gcc@gmail.com>
+
+	* gcc.dg/analyzer/fd-4.c: Define _MODE_T on AIX.
+
+2022-08-11  David Edelsohn  <dje.gcc@gmail.com>
+
+	* g++.dg/cpp0x/initlist-const1.C: XFAIL on AIX.
+
+2022-08-11  Immad Mir  <mirimmad@outlook.com>
+
+	* gcc.dg/analyzer/fd-dup-1.c: New testcases.
+	* gcc.dg/analyzer/fd-uninit-1.c: Remove bogus
+	warning.
+
+2022-08-11  Marek Polacek  <polacek@redhat.com>
+
+	PR middle-end/102633
+	* c-c++-common/Winit-self1.c: New test.
+	* c-c++-common/Winit-self2.c: New test.
+
+2022-08-11  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106514
+	* gcc.dg/tree-ssa/ssa-thread-19.c: Un-XFAIL.
+	* gcc.dg/tree-ssa/ssa-thread-20.c: New testcase.
+
+2022-08-11  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/106243
+	* gcc.dg/pr106243.c: Add -Wno-psabi to dg-options.
+	* gcc.dg/pr106243-1.c: Likewise.
+
+2022-08-11  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/104992
+	* gcc.dg/pr104992.c: Add -Wno-psabi to dg-options.
+	* g++.dg/pr104992-1.C: Likewise.  Add space between " and } in
+	dg-options.
+
+2022-08-11  Richard Biener  <rguenther@suse.de>
+
+	* gcc.dg/tree-ssa/ssa-thread-18.c: New testcase.
+	* gcc.dg/tree-ssa/ssa-thread-19.c: Likewise, but XFAILed.
+
 2022-08-10  Richard Biener  <rguenther@suse.de>
 
 	PR tree-optimization/106513


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-12  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-12  0:17 [gcc r13-2026] Daily bump GCC Administrator

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).