]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 28 Apr 2023 00:16:50 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 28 Apr 2023 00:16:50 +0000 (00:16 +0000)
ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/c/ChangeLog
gcc/cp/ChangeLog
gcc/po/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 879d51c55d8cf2bf78652c3933903288c11f43af..9e8027035799ab3cb8bae43e562c2d14cafd7340 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2023-04-27  Robin Dapp  <rdapp@ventanamicro.com>
+
+       * MAINTAINERS: Change my email address.
+
 2023-04-26  Patrick O'Neill  <patrick@rivosinc.com>
 
        * MAINTAINERS: Add myself.
index fe8f624343c7e65ef000aff534ae2797e1a0f5d4..a951d4eccd25afd541ddde37fdfe458e6c706bef 100644 (file)
@@ -1,3 +1,121 @@
+2023-04-27  Andrew Stubbs  <ams@codesourcery.com>
+
+       * config/gcn/gcn-valu.md (cmul<conj_op><mode>3): Use gcn_gen_undef.
+       (cml<addsub_as><mode>4): Likewise.
+       (vec_addsub<mode>3): Likewise.
+       (cadd<rot><mode>3): Likewise.
+       (vec_fmaddsub<mode>4): Likewise.
+       (vec_fmsubadd<mode>4): Likewise, and use sub for the odd lanes.
+
+2023-04-27  Andrew Pinski  <apinski@marvell.com>
+
+       * tree-ssa-phiopt.cc (phiopt_early_allow): Allow for
+       up to 2 min/max expressions in the sequence/match code.
+
+2023-04-27  Andrew Pinski  <apinski@marvell.com>
+
+       * rtlanal.cc (may_trap_p_1): Treat SMIN/SMAX similar as
+       COMPARISON.
+       * tree-eh.cc (operation_could_trap_helper_p): Treate
+       MIN_EXPR/MAX_EXPR similar as other comparisons.
+
+2023-04-27  Andrew Pinski  <apinski@marvell.com>
+
+       * tree-ssa-phiopt.cc (cond_store_replacement): Remove
+       prototype.
+       (cond_if_else_store_replacement): Likewise.
+       (get_non_trapping): Likewise.
+       (store_elim_worker): Move into ...
+       (pass_cselim::execute): This.
+
+2023-04-27  Andrew Pinski  <apinski@marvell.com>
+
+       * tree-ssa-phiopt.cc (two_value_replacement): Remove
+       prototype.
+       (match_simplify_replacement): Likewise.
+       (factor_out_conditional_conversion): Likewise.
+       (value_replacement): Likewise.
+       (minmax_replacement): Likewise.
+       (spaceship_replacement): Likewise.
+       (cond_removal_in_builtin_zero_pattern): Likewise.
+       (hoist_adjacent_loads): Likewise.
+       (tree_ssa_phiopt_worker): Move into ...
+       (pass_phiopt::execute): this.
+
+2023-04-27  Andrew Pinski  <apinski@marvell.com>
+
+       * tree-ssa-phiopt.cc (tree_ssa_phiopt_worker): Remove
+       do_store_elim argument and split that part out to ...
+       (store_elim_worker): This new function.
+       (pass_cselim::execute): Call store_elim_worker.
+       (pass_phiopt::execute): Update call to tree_ssa_phiopt_worker.
+
+2023-04-27  Jan Hubicka  <jh@suse.cz>
+
+       * cfgloopmanip.h (unloop_loops): Export.
+       * tree-ssa-loop-ch.cc (ch_base::copy_headers): Unloop loops
+       that no longer loop.
+       * tree-ssa-loop-ivcanon.cc (unloop_loops): Export; do not free
+       vectors of loops to unloop.
+       (canonicalize_induction_variables): Free vectors here.
+       (tree_unroll_loops_completely): Free vectors here.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/109170
+       * gimple-range-op.cc (gimple_range_op_handler::maybe_builtin_call):
+       Handle __builtin_expect and similar via cfn_pass_through_arg1
+       and inspecting the calls fnspec.
+       * builtins.cc (builtin_fnspec): Handle BUILT_IN_EXPECT
+       and BUILT_IN_EXPECT_WITH_PROBABILITY.
+
+2023-04-27  Alexandre Oliva  <oliva@adacore.com>
+
+       * genmultilib: Use CONFIG_SHELL to run sub-scripts.
+
+2023-04-27  Aldy Hernandez  <aldyh@redhat.com>
+
+       PR tree-optimization/109639
+       * ipa-cp.cc (ipa_value_range_from_jfunc): Normalize range.
+       (propagate_vr_across_jump_function): Same.
+       * ipa-fnsummary.cc (evaluate_conditions_for_known_args): Same.
+       * ipa-prop.h (ipa_range_set_and_normalize): New.
+       * value-range.cc (irange::set): Assert min and max are INTEGER_CST.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       * match.pd (BIT_FIELD_REF CONSTRUCTOR@0 @1 @2): Do not
+       create a CTOR operand in the result when simplifying GIMPLE.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       * gimplify.cc (gimplify_compound_lval): When the base
+       gimplified to a register make sure to split up chains
+       of operations.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       PR ipa/109607
+       * ipa-param-manipulation.h
+       (ipa_param_body_adjustments::modify_expression): Add extra_stmts
+       argument.
+       * ipa-param-manipulation.cc
+       (ipa_param_body_adjustments::modify_expression): Likewise.
+       When we need a conversion and the replacement is a register
+       split the conversion out.
+       (ipa_param_body_adjustments::modify_assignment): Pass
+       extra_stmts to RHS modify_expression.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/extend.texi (Zero Length): Describe example.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/109594
+       * tree-ssa.cc (non_rewritable_mem_ref_base): Constrain
+       what we rewrite to a register based on the above.
+
 2023-04-26  Patrick O'Neill  <patrick@rivosinc.com>
 
        * config/riscv/riscv.cc: Fix whitespace.
index faac45ae8d20defaf1f6d923528136e10abc11b3..dd82014ea01b640762b1c793bb53c06ff7677065 100644 (file)
@@ -1 +1 @@
-20230427
+20230428
index 53636a2473d7b4cf0257a198bdf57ae0cfcae75e..a801663d9922ee7c054c7ada09d6bf0efc34244b 100644 (file)
@@ -1,3 +1,17 @@
+2023-04-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/109409
+       * c-parser.cc (c_parser_initializer): Move diagnostics about
+       initialization of variable sized object with non-empty initializer
+       after c_parser_expr_no_commas call and ret.set_error (); after it.
+
+2023-04-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/107682
+       PR c/109412
+       * c-typeck.cc (pop_init_level): If constructor_type is FUNCTION_TYPE,
+       reject empty initializer as invalid.
+
 2023-04-26  Richard Biener  <rguenther@suse.de>
 
        * gimple-parser.cc (c_parser_parse_gimple_body): Avoid
index 373568456009cbc99ccc15ac278024ed8cb5577b..92a67c7eead828fdc5b8d107d1c841a5cca8565c 100644 (file)
@@ -1,3 +1,13 @@
+2023-04-27  Jason Merrill  <jason@redhat.com>
+
+       * call.cc (print_conversion_rejection): Use iloc_sentinel.
+
+2023-04-27  Jason Merrill  <jason@redhat.com>
+
+       PR c++/61445
+       * pt.cc (instantiate_decl): Assert !defer_ok for local
+       class members.
+
 2023-04-26  Jason Merrill  <jason@redhat.com>
 
        * init.cc (nsdmi_inst): Remove.
index cc3800e351b9a9bf79bbe07362dd05586c293b3e..c2bed3f1c3200208b716dd82c3af70b00edf23f3 100644 (file)
@@ -1,3 +1,9 @@
+2023-04-27  Joseph Myers  <joseph@codesourcery.com>
+
+       * be.po, da.po, de.po, el.po, es.po, fi.po, fr.po, hr.po, id.po,
+       ja.po, nl.po, ru.po, sr.po, sv.po, tr.po, uk.po, vi.po, zh_CN.po,
+       zh_TW.po: Update.
+
 2023-04-25  Joseph Myers  <joseph@codesourcery.com>
 
        * gcc.pot: Regenerate.
index f46d74a9ff65d374590f73acf487c6fbaf3818fb..4031053d763c8a2f4625b1ccc81c70596f0d6df1 100644 (file)
@@ -1,3 +1,40 @@
+2023-04-27  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/template/copy1.C: Adjust error lines.
+
+2023-04-27  Pan Li  <pan2.li@intel.com>
+
+       * gcc.target/riscv/read-thread-pointer.c: Add required tls.
+
+2023-04-27  Aldy Hernandez  <aldyh@redhat.com>
+
+       PR tree-optimization/109639
+       * gcc.dg/tree-ssa/pr109639.c: New file.
+       * gcc.dg/tree-ssa/pr109643.c: New file.
+
+2023-04-27  Richard Biener  <rguenther@suse.de>
+
+       PR ipa/109607
+       * g++.dg/torture/pr109607.C: New testcase.
+
+2023-04-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/109409
+       * gcc.dg/pr109409.c: New test.
+
+2023-04-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/107682
+       PR c/109412
+       * gcc.dg/pr109412.c: New test.
+
+2023-04-27  Jan Beulich  <jbeulich@suse.com>
+
+       * c-c++-common/patchable_function_entry-decl.c: Special-case
+       RISC-V.
+       * c-c++-common/patchable_function_entry-default.c: Likewise.
+       * c-c++-common/patchable_function_entry-definition.c: Likewise.
+
 2023-04-26  Jason Merrill  <jason@redhat.com>
 
        PR c++/69836
index 47b17be3f01d1d557933f672fe5e19d1f91651ce..23efb53eae5a55af914d6ab2e93c307a165a357c 100644 (file)
@@ -1,3 +1,65 @@
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/mofunc_impl.h: Fix typo in doxygen comment.
+       * include/std/format: Likewise.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/doxygen/user.cfg.in (FORMULA_TRANSPARENT, DOT_FONTNAME)
+       (DOT_FONTSIZE, DOT_TRANSPARENT): Remove obsolete options.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/doxygen/user.cfg.in (SOURCE_BROWSER): Only set to YES for
+       HTML docs.
+       * include/bits/gslice_array.h (_DEFINE_VALARRAY_OPERATOR): Omit
+       from doxygen docs.
+       * include/bits/indirect_array.h (_DEFINE_VALARRAY_OPERATOR):
+       Likewise.
+       * include/bits/mask_array.h (_DEFINE_VALARRAY_OPERATOR):
+       Likewise.
+       * include/bits/slice_array.h (_DEFINE_VALARRAY_OPERATOR):
+       Likewise.
+       * include/std/valarray (_DEFINE_VALARRAY_UNARY_OPERATOR)
+       (_DEFINE_VALARRAY_AUGMENTED_ASSIGNMENT)
+       (_DEFINE_VALARRAY_EXPR_AUGMENTED_ASSIGNMENT)
+       (_DEFINE_BINARY_OPERATOR): Likewise.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/memory_resource.h: Improve doxygen comments.
+       * include/std/memory_resource: Likewise.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/40380
+       * include/bits/basic_string.h: Improve doxygen comments.
+       * include/bits/cow_string.h: Likewise.
+       * include/bits/forward_list.h: Likewise.
+       * include/bits/fs_dir.h: Likewise.
+       * include/bits/fs_path.h: Likewise.
+       * include/bits/quoted_string.h: Likewise.
+       * include/bits/stl_bvector.h: Likewise.
+       * include/bits/stl_map.h: Likewise.
+       * include/bits/stl_multimap.h: Likewise.
+       * include/bits/stl_multiset.h: Likewise.
+       * include/bits/stl_set.h: Likewise.
+       * include/bits/stl_vector.h: Likewise.
+       * include/bits/unordered_map.h: Likewise.
+       * include/bits/unordered_set.h: Likewise.
+       * include/std/filesystem: Likewise.
+       * include/std/iomanip: Likewise.
+
+2023-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/105081
+       * src/c++11/random.cc (__throw_syserr): New function.
+       (random_device::_M_init, random_device::_M_init_pretr1): Use new
+       function for bad tokens.
+       (random_device::_M_getval): Use new function for read errors.
+       * testsuite/util/testsuite_random.h (random_device_available):
+       Change catch handler to use std::system_error.
+
 2023-04-24  Patrick Palka  <ppalka@redhat.com>
 
        * include/bits/max_size_type.h (__max_diff_type::operator>>=):