From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id A78D63858CDA; Fri, 12 Aug 2022 00:17:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A78D63858CDA MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2026] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: b2ee7d10302050aa9abd25f3feee69f24134012e X-Git-Newrev: 5cd525f05cebef6c1f4d785c804f732608a67443 Message-Id: <20220812001747.A78D63858CDA@sourceware.org> Date: Fri, 12 Aug 2022 00:17:47 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2022 00:17:47 -0000 https://gcc.gnu.org/g:5cd525f05cebef6c1f4d785c804f732608a67443 commit r13-2026-g5cd525f05cebef6c1f4d785c804f732608a67443 Author: GCC Administrator 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 + + * 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 + + 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 + + * 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 + + * 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 + + * config/rs6000/rs6000-internal.h (rs6000_global_entry_point_needed_p): + Remove function declaration. + 2022-08-10 Richard Biener 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 + + 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 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 + + PR middle-end/102633 + * c-gimplify.cc (c_gimplify_expr) : Don't call + suppress_warning here. + 2022-08-08 Tom Honermann 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 + + 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 * 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 + + PR middle-end/102633 + * decl.cc (cp_finish_decl): Call suppress_warning. + 2022-08-07 Jakub Jelinek 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 + + * gcc.dg/analyzer/fd-4.c: Define _MODE_T on AIX. + +2022-08-11 David Edelsohn + + * g++.dg/cpp0x/initlist-const1.C: XFAIL on AIX. + +2022-08-11 Immad Mir + + * gcc.dg/analyzer/fd-dup-1.c: New testcases. + * gcc.dg/analyzer/fd-uninit-1.c: Remove bogus + warning. + +2022-08-11 Marek Polacek + + 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 + + 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 + + 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 + + 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 + + * 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 PR tree-optimization/106513