From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2168) id D95833858D28; Thu, 12 Jan 2023 00:19:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D95833858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673482748; bh=yMONRDzN9X+jrcmInpHyalw6HVMgkEwAy1a38khboto=; h=From:To:Subject:Date:From; b=g5jSDO5913wWxMOjdU+J/AASnNUQzvtelTmTKuRhBQx9NCvHX/uRVQNjoiYF/XFed Oq9pkbpdu8KuwEdE0CzJHtv/uhwe+KxYBVZ91chYAy6qySvOq2onO1unmtL/zbcvQc A58zFWZyIG4z5bWAEVKoFxyb1isbMZJ/D1mbznU4= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: GCC Administrator To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5116] Daily bump. X-Act-Checkin: gcc X-Git-Author: GCC Administrator X-Git-Refname: refs/heads/master X-Git-Oldrev: 306ff653a3a542bcb930c8d25e178677faa2246a X-Git-Newrev: 81ed98bc57c3dbd89f26c13987119bf843a5e8f0 Message-Id: <20230112001908.D95833858D28@sourceware.org> Date: Thu, 12 Jan 2023 00:19:08 +0000 (GMT) List-Id: https://gcc.gnu.org/g:81ed98bc57c3dbd89f26c13987119bf843a5e8f0 commit r13-5116-g81ed98bc57c3dbd89f26c13987119bf843a5e8f0 Author: GCC Administrator Date: Thu Jan 12 00:18:07 2023 +0000 Daily bump. Diff: --- contrib/ChangeLog | 5 ++++ gcc/ChangeLog | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 14 ++++++++++ gcc/c-family/ChangeLog | 7 +++++ gcc/c/ChangeLog | 6 ++++ gcc/fortran/ChangeLog | 6 ++++ gcc/testsuite/ChangeLog | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 187 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index fc03953ccd6..fab42525127 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2023-01-12 Gerald Pfeifer + + * config-list.mk: Remove i486-freebsd4, ia64-freebsd6, and + sparc64-freebsd6. + 2023-01-06 Martin Liska * update-copyright.py: Add contrib as a default dir. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6c6c3519ec1..277623409fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,77 @@ +2023-01-11 Roger Sayle + + PR tree-optimization/71343 + * tree-ssa-sccvn.cc (visit_nary_op) : Make + the value number of the expression X << C the same as the value + number for the multiplication X * (1< + + PR target/108293 + * config/bpf/bpf.cc (bpf_print_operand): Correct handling for + floating point modes. + +2023-01-11 Eric Botcazou + + PR tree-optimization/108199 + * tree-sra.cc (sra_modify_expr): Deal with reverse storage order + for bit-field references. + +2023-01-11 Kewen Lin + + * config/rs6000/rs6000.cc (rs6000_option_override_internal): Make + OPTION_MASK_P10_FUSION implicit setting honour Power10 tuning setting. + * config/rs6000/rs6000-cpus.def (ISA_3_1_MASKS_SERVER): Remove + OPTION_MASK_P10_FUSION. + +2023-01-11 Richard Biener + + PR tree-optimization/107767 + * tree-cfgcleanup.cc (phi_alternatives_equal): Export. + * tree-cfgcleanup.h (phi_alternatives_equal): Declare. + * tree-switch-conversion.cc (switch_conversion::collect): + Count unique non-default targets accounting for later + merging opportunities. + +2023-01-11 Martin Liska + + PR middle-end/107976 + * params.opt: Limit JT params. + * stmt.cc (emit_case_dispatch_table): Use auto_vec. + +2023-01-11 Richard Biener + + PR tree-optimization/108352 + * tree-ssa-threadbackward.cc + (back_threader_profitability::profitable_path_p): Adjust + heuristic that allows non-multi-way branch threads creating + irreducible loops. + * doc/invoke.texi (--param fsm-scale-path-blocks): Remove. + (--param fsm-scale-path-stmts): Adjust. + * params.opt (--param=fsm-scale-path-blocks=): Remove. + (-param=fsm-scale-path-stmts=): Adjust description. + +2023-01-11 Richard Biener + + PR tree-optimization/108353 + * tree-ssa-propagate.cc (cfg_blocks_back, ssa_edge_worklist_back): + Remove. + (add_ssa_edge): Simplify. + (add_control_edge): Likewise. + (ssa_prop_init): Likewise. + (ssa_prop_fini): Likewise. + (ssa_propagation_engine::ssa_propagate): Likewise. + +2023-01-11 Andreas Krebbel + + * config/s390/s390.md (*not): New pattern. + +2023-01-11 Takayuki 'January June' Suwa + + * config/xtensa/xtensa.cc (xtensa_insn_cost): + Let insn cost for size be obtained by applying COSTS_N_INSNS() + to instruction length and then dividing by 3. + 2023-01-10 Richard Biener PR tree-optimization/106293 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 35defd81c7a..02b5c084d5f 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230111 +20230112 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index d7416917abd..8a6ebc1ab58 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,17 @@ +2023-01-11 David Malcolm + + PR analyzer/108252 + * kf.cc (class kf_strdup): New. + (class kf_strndup): New. + (register_known_functions): Register them. + * region-model.cc (region_model::on_call_pre): Use + &HEAP_ALLOCATED_REGION for the default result of an external + function with the "malloc" attribute, rather than CONJURED_SVALUE. + (region_model::get_or_create_region_for_heap_alloc): Allow + "size_in_bytes" to be NULL. + * store.cc (store::set_value): When handling *UNKNOWN = VAL, + mark VAL as "maybe bound". + 2022-12-16 David Malcolm PR analyzer/106479 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 72ad5ef43a3..3e0cc55584c 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,10 @@ +2023-01-12 Lewis Hyatt + + PR preprocessor/108244 + * c-pragma.cc (c_register_pragma_1): Don't attempt to register any + deferred pragmas if -fdirectives-only. + (init_pragma): Likewise. + 2023-01-09 Martin Liska PR c/107993 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index fddb44600df..69ee9da7938 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,9 @@ +2023-01-11 Jakub Jelinek + + PR c/105972 + * c-parser.cc (c_parser_declaration_or_fndef): Disable debug non-bind + markers for K&R function parameter declarations of nested functions. + 2023-01-09 Joseph Myers * c-decl.cc (build_compound_literal): Call record_inline_static. diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 7c72e9bccd5..f878a92b440 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2023-01-11 Jakub Jelinek + + PR fortran/108349 + * f95-lang.cc (gfc_init_builtin_function): Fix up function types + for BUILT_IN_REALLOC and BUILT_IN_SINCOS{F,,L}. Formatting fixes. + 2023-01-10 Harald Anlauf PR fortran/97345 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8cd4f834c58..730781bccbf 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,77 @@ +2023-01-12 Lewis Hyatt + + * c-c++-common/cpp/pr108244-1.c: New test. + * c-c++-common/cpp/pr108244-2.c: New test. + * c-c++-common/gomp/pr108244-3.c: New test. + +2023-01-11 David Malcolm + + PR analyzer/108252 + * gcc.dg/analyzer/attr-malloc-pr108252.c: New test. + * gcc.dg/analyzer/fd-leak-pr108252.c: New test. + * gcc.dg/analyzer/flex-with-call-summaries.c: Remove xfail from + warning false +ve directives. + * gcc.dg/analyzer/pr103217-2.c: Add -Wno-analyzer-too-complex. + * gcc.dg/analyzer/pr103217-3.c: Likewise. + * gcc.dg/analyzer/strdup-pr108252.c: New test. + * gcc.dg/analyzer/strndup-pr108252.c: New test. + +2023-01-11 Jakub Jelinek + + PR c/105972 + * gcc.dg/pr105972.c: New test. + +2023-01-11 Roger Sayle + + PR tree-optimization/71343 + * gcc.dg/pr71343-2.c: New test case. + +2023-01-11 David Faust + + PR target/108293 + * gcc.target/bpf/double-1.c: New test. + * gcc.target/bpf/double-2.c: New test. + * gcc.target/bpf/float-1.c: New test. + +2023-01-11 Eric Botcazou + + * gcc.dg/sso-17.c: New test. + +2023-01-11 Kewen Lin + + * gcc.target/powerpc/ppc-fortran/ppc-fortran.exp: Exit immediately if + the testing target isn't a PowerPC target. + +2023-01-11 Richard Biener + + PR tree-optimization/107767 + * gcc.dg/tree-ssa/pr107767.c: New testcase. + +2023-01-11 Jakub Jelinek + + PR target/108308 + * gcc.dg/pr108308.c: Use int32 target rather than { ilp32 || lp64 }. + +2023-01-11 Richard Biener + + PR tree-optimization/108352 + * gcc.dg/tree-ssa/ssa-thread-21.c: New testcase. + * gcc.dg/tree-ssa/vrp46.c: Remove --param fsm-scale-path-blocks=1. + +2023-01-11 Richard Biener + + PR tree-optimization/108353 + * gcc.dg/tree-ssa/ssa-copyprop-3.c: New testcase. + +2023-01-11 Andreas Krebbel + + * gcc.target/s390/not.c: New test. + +2023-01-11 Richard Biener + + PR tree-optimization/106293 + * gcc.dg/tree-ssa/ssa-dse-46.c: Remove long initializer. + 2023-01-10 Richard Biener PR tree-optimization/106293