]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 31 Mar 2023 00:17:02 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 31 Mar 2023 00:17:02 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libiberty/ChangeLog

index 6fbc2694319473f7b63dca1c09b5ebc65ce41ae0..f0e4c8b4ee8d6807305595a88dd602f7d0c03c81 100644 (file)
@@ -1,3 +1,38 @@
+2023-03-30  Andrew MacLeod  <amacleod@redhat.com>
+
+       PR tree-optimization/109154
+       * gimple-range-gori.cc (gori_compute::may_recompute_p): Add depth limit.
+       * gimple-range-gori.h (may_recompute_p): Add depth param.
+       * params.opt (ranger-recompute-depth): New param.
+
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/107897
+       PR c++/108887
+       * cgraph.h: Move reset() from cgraph_node to symtab_node.
+       * cgraphunit.cc (symtab_node::reset): Adjust.  Also call
+       remove_from_same_comdat_group.
+
+2023-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/107561
+       * gimple-ssa-warn-access.cc (get_size_range): Add flags
+       argument and pass it on.
+       (check_access): When querying for the size range pass
+       SR_ALLOW_ZERO when the known destination size is zero.
+
+2023-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/109342
+       * tree-ssa-sccvn.cc (vn_nary_op_get_predicated_value): New
+       overload for edge.  When that edge is a backedge use
+       dominated_by_p directly.
+
+2023-03-30  liuhongt  <hongtao.liu@intel.com>
+
+       * config/i386/i386-expand.cc (expand_vec_perm_blend): Generate
+       vpblendd instead of vpblendw for V4SI under avx2.
+
 2023-03-29  Hans-Peter Nilsson  <hp@axis.com>
 
        * config/cris/cris.cc (cris_rtx_costs) [CONST_INT]: Return 0
index 6800443be954bdcb2071b2b573e50744079a5094..bc28fe8762d81ad13f3fe56a9e419ed92408c58c 100644 (file)
@@ -1 +1 @@
-20230330
+20230331
index d74c8c4a6f3027523982da337387eda4925dbc2f..9ac06ae7240734024ef1028ffa05d96a00604b3f 100644 (file)
@@ -1,3 +1,39 @@
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105452
+       * search.cc (type_context_for_name_lookup): New.
+       (accessible_p): Handle anonymous union.
+       * init.cc (maybe_instantiate_nsdmi_init): Use
+       type_context_for_name_lookup.
+       * parser.cc (cp_parser_class_specifier): Likewise.
+       * cp-tree.h (type_context_for_name_lookup): Declare.
+
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105221
+       * pt.cc (unify) [FUNCTION_TYPE]: Handle function pointer
+       conversions.
+
+2023-03-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/109319
+       * decl2.cc (grok_array_decl): After emitting a pedwarn for
+       -Wcomma-subscript, if processing_template_decl set orig_index_exp
+       to compound expr from orig_index_exp_list.
+
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/107897
+       PR c++/108887
+       * decl2.cc (record_mangling): Use symtab_node::reset.
+
+2023-03-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/109278
+       * call.cc (convert_like_internal): If pedwarn for extended float
+       type conversions doesn't report anything, avoid calling
+       maybe_inform_about_fndecl_for_bogus_argument_init.
+
 2023-03-29  Jason Merrill  <jason@redhat.com>
 
        PR c++/109321
index ff390554fac489541528ad253d035c898e131764..d09a89a785e51436864b1e07cefb1a5fd109d7f5 100644 (file)
@@ -1,3 +1,9 @@
+2023-03-30  Andrew Pinski  <apinski@marvell.com>
+
+       * dump-parse-tree.cc (get_c_type_name): Fix "long_long"
+       type name to be "long long". Add a comment on why adding
+       2 to the name too.
+
 2023-03-28  Jakub Jelinek  <jakub@redhat.com>
 
        PR fortran/109314
index e894c23c285a5d54072309bac266f5f9616f23df..570033c5a305ecdf2bb9a70e6a567fc3097d026a 100644 (file)
@@ -1,3 +1,50 @@
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105452
+       * g++.dg/lookup/anon8.C: New test.
+
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/105221
+       * g++.dg/cpp1z/noexcept-type27.C: New test.
+
+2023-03-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/109319
+       * g++.dg/cpp23/subscript14.C: New test.
+
+2023-03-30  Andrew MacLeod  <amacleod@redhat.com>
+
+       PR tree-optimization/109154
+       * gcc.dg/Walloca-13.c: Remove bogus warning that is now fixed.
+
+2023-03-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/107897
+       PR c++/108887
+       * g++.dg/cpp2a/concepts-lambda3.C: Use -flto if supported.
+       * g++.dg/cpp0x/lambda/lambda-mangle7.C: New test.
+
+2023-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/107561
+       * g++.dg/pr71488.C: Remove XFAILed bogus diagnostic again.
+       * g++.dg/warn/Warray-bounds-16.C: Likewise.
+
+2023-03-30  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/109342
+       * g++.dg/torture/pr109342.C: New testcase.
+
+2023-03-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/109278
+       * g++.dg/cpp23/ext-floating15.C: New test.
+
+2023-03-30  liuhongt  <hongtao.liu@intel.com>
+
+       * gcc.target/i386/pr88828-0.c: Adjust testcase.
+
 2023-03-29  Gaius Mulley  <gaiusmod2@gmail.com>
 
        PR modula2/109336
index adc232c22eed67acd3d92a862fed0ed763ef2bdd..be8bc5d439b54968362dec0de91d6a158fe90d4d 100644 (file)
@@ -1,3 +1,8 @@
+2023-03-30  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * obstacks.texi (Preparing for Obstacks): Remove a (broken)
+       reference to the Glibc manual.
+
 2023-03-03  Costas Argyris  <costas.argyris@gmail.com>
 
        * pex-win32.c (win32_spawn): Fix memory leak of cmdline