From: GCC Administrator Date: Mon, 8 Nov 2021 00:16:17 +0000 (+0000) Subject: Daily bump. X-Git-Tag: basepoints/gcc-13~3330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cb25fd1adb26cddc57cd9ae356f72de96ec2daa;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6b4a7b43d581..b48554bd51de 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,79 @@ +2021-11-07 Jan Hubicka + + PR ipa/103055 + * params.opt (modref-max-depth): Add range. + (modref-max-adjustments): Fix range. + +2021-11-07 Aldy Hernandez + + * tree-pass.h (make_pass_vrp_threader): Remove. + * tree-ssa-threadbackward.c + (back_threader_profitability::profitable_path_p): Remove + ASSERT_EXPR references. + * tree-ssa-threadedge.c (jt_state::register_equivs_stmt): Same. + * tree-vrp.c (vrp_folder::simplify_casted_conds): Same. + (execute_vrp): Same. + (class hybrid_threader): Remove. + (hybrid_threader::hybrid_threader): Remove. + (hybrid_threader::~hybrid_threader): Remove. + (hybrid_threader::before_dom_children): Remove. + (hybrid_threader::after_dom_children): Remove. + (execute_vrp_threader): Remove. + (class pass_vrp_threader): Remove. + (make_pass_vrp_threader): Remove. + +2021-11-07 Jan Hubicka + + * gimple.c (gimple_call_arg_flags): Use interposable_eaf_flags. + (gimple_call_retslot_flags): Likewise. + (gimple_call_static_chain_flags): Likewise. + * ipa-modref.c (remove_useless_eaf_flags): Do not remove everything for + NOVOPS. + (modref_summary::useful_p): Likewise. + (modref_summary_lto::useful_p): Likewise. + (analyze_parms): Do not give up on NOVOPS. + (analyze_function): When dumping report chnages in EAF flags + between IPA and local pass. + (modref_merge_call_site_flags): Compute implicit eaf flags + based on callee ecf_flags and fnspec; if the function does not + bind to current defs use interposable_eaf_flags. + (modref_propagate_flags_in_scc): Update. + * ipa-modref.h (interposable_eaf_flags): New function. + +2021-11-07 Bill Schmidt + + * config/rs6000/rs6000-call.c (rs6000_expand_new_builtin): New + forward decl. + (rs6000_invalid_new_builtin): New function. + (rs6000_expand_builtin): Call rs6000_expand_new_builtin. + (rs6000_expand_ldst_mask): New function. + (new_cpu_expand_builtin): Likewise. + (elemrev_icode): Likewise. + (ldv_expand_builtin): Likewise. + (lxvrse_expand_builtin): Likewise. + (lxvrze_expand_builtin): Likewise. + (stv_expand_builtin): Likewise. + (new_mma_expand_builtin): Likewise. + (new_htm_spr_num): Likewise. + (new_htm_expand_builtin): Likewise. + (rs6000_expand_new_builtin): Likewise. + (rs6000_init_builtins): Initialize altivec_builtin_mask_for_load. + +2021-11-07 Jan Hubicka + + * ipa-modref.c (modref_lattice): Add do_dataflow, + changed and propagate_to fields. + (modref_lattice::release): Free propagate_to + (modref_lattice::merge): Do not give up early on unknown + lattice values. + (modref_lattice::merge_deref): Likewise. + (modref_eaf_analysis): Update toplevel comment. + (modref_eaf_analysis::analyze_ssa_name): Record postponned ssa names; + do optimistic dataflow initialization. + (modref_eaf_analysis::merge_with_ssa_name): Build dataflow graph. + (modref_eaf_analysis::propagate): New member function. + (analyze_parms): Update to new API of modref_eaf_analysis. + 2021-11-06 Jan Hubicka * cgraph.h (cgraph_node::can_be_discarded_p): Do not diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 7b83a62397eb..ead5f96b652b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20211107 +20211108 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 9fbf4f4d9326..84509358aa04 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,19 @@ +2021-11-07 Thomas Koenig + + * intrinsic.c (add_subroutines): Change keyword "operator" + to the correct one, "operation". + * check.c (gfc_check_co_reduce): Change OPERATOR to + OPERATION in error messages. + * intrinsic.texi: Change OPERATOR to OPERATION in + documentation. + +2021-11-07 Sandra Loosemore + + * interface.c (gfc_compare_actual_formal): Continue checking + all arguments after encountering an error. + * intrinsic.c (do_ts29113_check): Likewise. + * resolve.c (resolve_operator): Continue resolving on op2 error. + 2021-11-06 Harald Anlauf PR fortran/102715 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7277a3eac041..ca9de014c61c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,23 @@ +2021-11-07 Thomas Koenig + + * gfortran.dg/co_reduce_2.f90: New test. + * gfortran.dg/coarray_collectives_14.f90: Change OPERATOR + to OPERATION. + * gfortran.dg/coarray_collectives_16.f90: Likewise. + * gfortran.dg/coarray_collectives_9.f90: Likewise. + Co-authored by: Steve Kargl + +2021-11-07 Sandra Loosemore + + * gfortran.dg/bessel_3.f90: Expect additional diagnostics from + multiple bad arguments in the call. + * gfortran.dg/pr24823.f: Likewise. + * gfortran.dg/pr39937.f: Likewise. + * gfortran.dg/pr41011.f: Likewise. + * gfortran.dg/pr61318.f90: Likewise. + * gfortran.dg/c-interop/c407b-2.f90: Remove xfails. + * gfortran.dg/c-interop/c535b-2.f90: Likewise. + 2021-11-06 Harald Anlauf PR fortran/102715