]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 12 Aug 2022 00:17:02 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 12 Aug 2022 00:17:02 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/analyzer/ChangeLog
gcc/c-family/ChangeLog
gcc/c/ChangeLog
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog

index 5f55323c7701912cba51d5491de69c626feb6109..cb74455c2b6f3a5dc73e90d385e7f5b15b9738de 100644 (file)
@@ -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
index 015f4ab35a379eba21f037cd3b54c57dfa0b1cc6..1c5d419104a1fd0b0441fc691fbb5ad1256d5ac3 100644 (file)
@@ -1 +1 @@
-20220811
+20220812
index b16971b9eafdae4cd058f7275d0af473c9baf002..f44c5eb563f62dd9d86ad47a6afe64c04fe01397 100644 (file)
@@ -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
index 63277a514eb49b3e3229a58616122edbc89448fb..fea41f489665df978af516b136ac824792d0a19b 100644 (file)
@@ -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
index b5ecf9269e64c51c601ed272fd1212e3cb14b4d7..985c96c0a4a905980fdd1e1fb233c31ea6143a6a 100644 (file)
@@ -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
index ed83b97df573c1472812d9b46cd69b67cab1a7a8..06ca1a4425fc0734f4c88d48b99cb0c87b8bdcc7 100644 (file)
@@ -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
index f64dfc1684b9df49fc321da87122a904bda2d06f..11b23bc73686b8269860a534612de90defbb85ce 100644 (file)
@@ -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