Daily bump.
This commit is contained in:
parent
306ff653a3
commit
81ed98bc57
8 changed files with 187 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2023-01-12 Gerald Pfeifer <gerald@pfeifer.com>
|
||||
|
||||
* config-list.mk: Remove i486-freebsd4, ia64-freebsd6, and
|
||||
sparc64-freebsd6.
|
||||
|
||||
2023-01-06 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* update-copyright.py: Add contrib as a default dir.
|
||||
|
|
|
@ -1,3 +1,77 @@
|
|||
2023-01-11 Roger Sayle <roger@nextmovesoftware.com>
|
||||
|
||||
PR tree-optimization/71343
|
||||
* tree-ssa-sccvn.cc (visit_nary_op) <case LSHIFT_EXPR>: Make
|
||||
the value number of the expression X << C the same as the value
|
||||
number for the multiplication X * (1<<C).
|
||||
|
||||
2023-01-11 David Faust <david.faust@oracle.com>
|
||||
|
||||
PR target/108293
|
||||
* config/bpf/bpf.cc (bpf_print_operand): Correct handling for
|
||||
floating point modes.
|
||||
|
||||
2023-01-11 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR tree-optimization/108199
|
||||
* tree-sra.cc (sra_modify_expr): Deal with reverse storage order
|
||||
for bit-field references.
|
||||
|
||||
2023-01-11 Kewen Lin <linkw@linux.ibm.com>
|
||||
|
||||
* 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 <rguenther@suse.de>
|
||||
|
||||
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 <mliska@suse.cz>
|
||||
|
||||
PR middle-end/107976
|
||||
* params.opt: Limit JT params.
|
||||
* stmt.cc (emit_case_dispatch_table): Use auto_vec.
|
||||
|
||||
2023-01-11 Richard Biener <rguenther@suse.de>
|
||||
|
||||
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 <rguenther@suse.de>
|
||||
|
||||
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 <krebbel@linux.ibm.com>
|
||||
|
||||
* config/s390/s390.md (*not<mode>): New pattern.
|
||||
|
||||
2023-01-11 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
|
||||
|
||||
* 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 <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/106293
|
||||
|
|
|
@ -1 +1 @@
|
|||
20230111
|
||||
20230112
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
2023-01-11 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
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 <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/106479
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2023-01-12 Lewis Hyatt <lhyatt@gmail.com>
|
||||
|
||||
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 <mliska@suse.cz>
|
||||
|
||||
PR c/107993
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2023-01-11 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
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 <joseph@codesourcery.com>
|
||||
|
||||
* c-decl.cc (build_compound_literal): Call record_inline_static.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2023-01-11 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
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 <anlauf@gmx.de>
|
||||
|
||||
PR fortran/97345
|
||||
|
|
|
@ -1,3 +1,77 @@
|
|||
2023-01-12 Lewis Hyatt <lhyatt@gmail.com>
|
||||
|
||||
* 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 <dmalcolm@redhat.com>
|
||||
|
||||
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 <jakub@redhat.com>
|
||||
|
||||
PR c/105972
|
||||
* gcc.dg/pr105972.c: New test.
|
||||
|
||||
2023-01-11 Roger Sayle <roger@nextmovesoftware.com>
|
||||
|
||||
PR tree-optimization/71343
|
||||
* gcc.dg/pr71343-2.c: New test case.
|
||||
|
||||
2023-01-11 David Faust <david.faust@oracle.com>
|
||||
|
||||
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 <ebotcazou@adacore.com>
|
||||
|
||||
* gcc.dg/sso-17.c: New test.
|
||||
|
||||
2023-01-11 Kewen Lin <linkw@linux.ibm.com>
|
||||
|
||||
* gcc.target/powerpc/ppc-fortran/ppc-fortran.exp: Exit immediately if
|
||||
the testing target isn't a PowerPC target.
|
||||
|
||||
2023-01-11 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/107767
|
||||
* gcc.dg/tree-ssa/pr107767.c: New testcase.
|
||||
|
||||
2023-01-11 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/108308
|
||||
* gcc.dg/pr108308.c: Use int32 target rather than { ilp32 || lp64 }.
|
||||
|
||||
2023-01-11 Richard Biener <rguenther@suse.de>
|
||||
|
||||
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 <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/108353
|
||||
* gcc.dg/tree-ssa/ssa-copyprop-3.c: New testcase.
|
||||
|
||||
2023-01-11 Andreas Krebbel <krebbel@linux.ibm.com>
|
||||
|
||||
* gcc.target/s390/not.c: New test.
|
||||
|
||||
2023-01-11 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/106293
|
||||
* gcc.dg/tree-ssa/ssa-dse-46.c: Remove long initializer.
|
||||
|
||||
2023-01-10 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/106293
|
||||
|
|
Loading…
Add table
Reference in a new issue