Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 24 Feb 2022 00:16:22 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 24 Feb 2022 00:16:22 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/analyzer/ChangeLog
gcc/c/ChangeLog
gcc/testsuite/ChangeLog

index 714ab10..bf1e5c0 100644 (file)
@@ -1,3 +1,46 @@
+2022-02-23  Richard Biener  <rguenther@suse.de>
+           Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/104644
+       * doc/match-and-simplify.texi: Amend ! documentation.
+       * genmatch.cc (expr::gen_transform): Code-generate ! support
+       for GENERIC.
+       (parser::parse_expr): Allow ! for GENERIC.
+       * match.pd (cmp (bswap @0) INTEGER_CST@1): Use ! modifier on
+       bswap.
+
+2022-02-23  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/101636
+       * tree-vect-slp.cc (vect_print_slp_tree): Dump the
+       vector type of the node.
+       (vect_slp_analyze_operations): Make sure the CTOR
+       is vectorized with an expected type.
+       (vectorize_slp_instance_root_stmt): Revert r10-5979 fix.
+
+2022-02-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/104633
+       * gimple-warn-recursion.cc (pass_warn_recursion::find_function_exit):
+       Don't warn about calls to corresponding builtin from extern inline
+       gnu_inline wrappers.
+
+2022-02-23  Roger Sayle  <roger@nextmovesoftware.com>
+
+       PR target/104489
+       * config/nvptx/nvptx.md (*movhf_insn): Add subregs_ok attribute.
+
+2022-02-23  Christophe Lyon  <christophe.lyon@arm.com>
+
+       PR target/100757
+       PR target/101325
+       * config/arm/vfp.md (thumb2_movhi_vfp, thumb2_movhi_fp16): Fix
+       typo.
+
+2022-02-23  Cui,Lili  <lili.cui@intel.com>
+
+       * doc/invoke.texi: Update documents for Intel architectures.
+
 2022-02-22  Roger Sayle  <roger@nextmovesoftware.com>
 
        * config/i386/i386-expand.cc (ix86_expand_cmpxchg_loop): Restore
index 5d0073e..586e0fe 100644 (file)
@@ -1 +1 @@
-20220223
+20220224
index dcd6e40..2ebc551 100644 (file)
@@ -1,3 +1,34 @@
+2022-02-23  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/104434
+       * analyzer.h (class const_fn_result_svalue): New decl.
+       * region-model-impl-calls.cc (call_details::get_manager): New.
+       * region-model-manager.cc
+       (region_model_manager::get_or_create_const_fn_result_svalue): New.
+       (region_model_manager::log_stats): Log
+       m_const_fn_result_values_map.
+       * region-model.cc (const_fn_p): New.
+       (maybe_get_const_fn_result): New.
+       (region_model::on_call_pre): Handle fndecls with
+       __attribute__((const)) by calling the above rather than making
+       a conjured_svalue.
+       * region-model.h (visitor::visit_const_fn_result_svalue): New.
+       (region_model_manager::get_or_create_const_fn_result_svalue): New
+       decl.
+       (region_model_manager::const_fn_result_values_map_t): New typedef.
+       (region_model_manager::m_const_fn_result_values_map): New field.
+       (call_details::get_manager): New decl.
+       * svalue.cc (svalue::cmp_ptr): Handle SK_CONST_FN_RESULT.
+       (const_fn_result_svalue::dump_to_pp): New.
+       (const_fn_result_svalue::dump_input): New.
+       (const_fn_result_svalue::accept): New.
+       * svalue.h (enum svalue_kind): Add SK_CONST_FN_RESULT.
+       (svalue::dyn_cast_const_fn_result_svalue): New.
+       (class const_fn_result_svalue): New.
+       (is_a_helper <const const_fn_result_svalue *>::test): New.
+       (template <> struct default_hash_traits<const_fn_result_svalue::key_t>):
+       New.
+
 2022-02-17  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/104576
index ae4fd17..b177355 100644 (file)
@@ -1,3 +1,9 @@
+2022-02-23  Richard Biener  <rguenther@suse.de>
+
+       * gimple-parser.cc (c_parser_parse_gimple_body): Diagnose
+       SSA names without definition.
+       (c_parser_gimple_declaration): Handle pointer typed SSA names.
+
 2022-02-17  Jakub Jelinek  <jakub@redhat.com>
 
        PR c/104532
index 6534fad..8bfd873 100644 (file)
@@ -1,3 +1,47 @@
+2022-02-23  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/104434
+       * gcc.dg/analyzer/attr-const-1.c: New test.
+       * gcc.dg/analyzer/attr-const-2.c: New test.
+       * gcc.dg/analyzer/attr-const-3.c: New test.
+       * gcc.dg/analyzer/pr104434-const.c: New test.
+       * gcc.dg/analyzer/pr104434-nonconst.c: New test.
+       * gcc.dg/analyzer/pr104434.h: New test.
+
+2022-02-23  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/79493
+       * g++.dg/diagnostic/undeclared1.C: New test.
+
+2022-02-23  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/70077
+       * g++.dg/cpp0x/noexcept76.C: New test.
+
+2022-02-23  Richard Biener  <rguenther@suse.de>
+           Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/104644
+       * gcc.dg/pr104644.c: New test.
+
+2022-02-23  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/gimplefe-49.c: New testcase.
+       * gcc.dg/gimplefe-error-13.c: Likewise.
+
+2022-02-23  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/101636
+       * gcc.target/i386/pr101636.c: New testcase.
+       * c-c++-common/torture/pr101636.c: Likewise.
+
+2022-02-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/104633
+       * gcc.dg/Winfinite-recursion-3.c: New test.
+       * gcc.dg/Winfinite-recursion-4.c: New test.
+       * gcc.dg/Winfinite-recursion-5.c: New test.
+
 2022-02-22  Paul A. Clarke  <pc@us.ibm.com>
 
        * g++.dg/ext/altivec-1.C: Move to g++.target/powerpc, adjust dg