Daily bump.
This commit is contained in:
parent
58df535075
commit
d20a6a3311
6 changed files with 130 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
20230330
|
||||
20230331
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue