mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 20:01:21 +08:00
Daily bump.
This commit is contained in:
parent
59f6dea963
commit
5e4f5c25d6
@ -1,3 +1,8 @@
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* filter-clang-warnings.py: Skip egrep: warning: egrep is
|
||||
obsolescent; using grep -E.
|
||||
|
||||
2022-08-31 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* config-list.mk: Remove deprecated ports.
|
||||
|
@ -1,3 +1,89 @@
|
||||
2022-09-20 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
* value-range.h (frange::maybe_isnan): Return false for
|
||||
undefined ranges.
|
||||
|
||||
2022-09-20 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
* value-range.cc (frange::set_nonnegative): Set +NAN.
|
||||
(range_tests_signed_zeros): New test.
|
||||
* value-range.h (frange::update_nan): New overload to set NAN sign.
|
||||
|
||||
2022-09-20 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
PR target/106491
|
||||
* config/aarch64/aarch64-sve-builtins.cc (scalar_types)
|
||||
(acle_vector_types, acle_svpattern, acle_svprfop): Add GTY
|
||||
markup to (new) extern declarations instead of to the main
|
||||
definition.
|
||||
|
||||
2022-09-20 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
PR tree-optimization/106794
|
||||
PR tree-optimization/106914
|
||||
* tree-vect-slp.cc (vect_optimize_slp_pass::internal_node_cost):
|
||||
Only consider loads that already have a permutation.
|
||||
(vect_optimize_slp_pass::start_choosing_layouts): Assert that
|
||||
loads with permutations are leaf nodes. Prevent any kind of grouped
|
||||
access from changing layout if it doesn't have a load permutation.
|
||||
|
||||
2022-09-20 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
* tree-vect-data-refs.cc (vect_check_gather_scatter): Restrict
|
||||
early-out optimisation to SSA_NAMEs.
|
||||
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* ctfc.cc (ctf_add_string): Replace "the the" with "the".
|
||||
* doc/md.texi: Likewise.
|
||||
* gimple-range-infer.cc (non_null_loadstore): Likewise.
|
||||
|
||||
2022-09-20 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
PR target/106910
|
||||
* config/i386/mmx.md (nearbyintv2sf2): New expander.
|
||||
(rintv2sf2): Ditto.
|
||||
(ceilv2sf2): Ditto.
|
||||
(lceilv2sfv2si2): Ditto.
|
||||
(floorv2sf2): Ditto.
|
||||
(lfloorv2sfv2si2): Ditto.
|
||||
(btruncv2sf2): Ditto.
|
||||
(lrintv2sfv2si2): Ditto.
|
||||
(roundv2sf2): Ditto.
|
||||
(lroundv2sfv2si2): Ditto.
|
||||
(*mmx_roundv2sf2): New define_insn.
|
||||
|
||||
2022-09-20 konglin1 <lingling.kong@intel.com>
|
||||
|
||||
PR middle-end/105735
|
||||
* tree-scalar-evolution.cc
|
||||
(analyze_and_compute_bitop_with_inv_effect): New function.
|
||||
(final_value_replacement_loop): Enhanced to handle bitop
|
||||
with inv induction.
|
||||
|
||||
2022-09-20 Xi Ruoyao <xry111@xry111.site>
|
||||
|
||||
* config/loongarch/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): For
|
||||
-static-pie, pass -static -pie --no-dynamic-linker -z text to
|
||||
the linker, and do not pass --dynamic-linker.
|
||||
|
||||
2022-09-20 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
* value-range.cc (frange::flush_denormals_to_zero): New.
|
||||
(frange::set): Call flush_denormals_to_zero.
|
||||
* value-range.h (class frange): Add flush_denormals_to_zero.
|
||||
|
||||
2022-09-20 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
* config/i386/x86-tune-sched.cc (ix86_issue_rate): Adjust for
|
||||
latest Intel processors.
|
||||
|
||||
2022-09-20 konglin1 <lingling.kong@intel.com>
|
||||
|
||||
PR target/106887
|
||||
* config/i386/i386-expand.cc (ix86_expand_vector_init_duplicate):
|
||||
Fixed V16BF mode case.
|
||||
|
||||
2022-09-19 Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
|
||||
|
||||
* targhooks.cc (default_zero_call_used_regs): Improve sorry
|
||||
|
@ -1 +1 @@
|
||||
20220920
|
||||
20220921
|
||||
|
@ -1,3 +1,9 @@
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* exp_ch6.adb: Replace "the the" with "the".
|
||||
* sem_ch6.adb: Likewise.
|
||||
* sem_disp.ads: Likewise.
|
||||
|
||||
2022-09-15 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* gcc-interface/trans.cc (gigi): Do not initialize void_list_node.
|
||||
|
@ -1,3 +1,16 @@
|
||||
2022-09-20 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* decl.cc (cp_finish_decl): After updating the deduced type of a
|
||||
VAR_DECL, also update the corresponding TEMPLATE_DECL if there
|
||||
is one.
|
||||
|
||||
2022-09-20 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
PR c++/106761
|
||||
* module.cc (trees_out::type_node) <case TYPE_PACK_EXPANSION>:
|
||||
Stream PACK_EXPANSION_EXTRA_ARGS.
|
||||
(trees_in::tree_node) <case TYPE_PACK_EXPANSION>: Likewise.
|
||||
|
||||
2022-09-17 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* module.cc (friend_from_decl_list): Don't consider
|
||||
|
@ -1,3 +1,40 @@
|
||||
2022-09-20 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
PR fortran/104143
|
||||
* interface.cc (compare_parameter): Permit scalar args to
|
||||
'type(*), dimension(*)'.
|
||||
|
||||
2022-09-20 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/106986
|
||||
* simplify.cc (gfc_simplify_findloc): Do not try to simplify
|
||||
intrinsic FINDLOC when the ARRAY argument has a NULL shape.
|
||||
|
||||
2022-09-20 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/106985
|
||||
* expr.cc (gfc_simplify_expr): Avoid NULL pointer dereference.
|
||||
|
||||
2022-09-20 José Rui Faustino de Sousa <jrfsousa@gmail.com>
|
||||
|
||||
PR fortran/100132
|
||||
* trans-types.cc (create_fn_spec): Fix function attributes when
|
||||
passing polymorphic pointers.
|
||||
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR fortran/106636
|
||||
* gfortran.texi: Add back link to ISO_VARYING_STRING.
|
||||
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* gfortran.texi: Replace "the the" with "the".
|
||||
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR fortran/106636
|
||||
* gfortran.texi: Remove 2 dead links.
|
||||
|
||||
2022-09-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
||||
|
||||
* libgfortran.h: Declare GFC_FPE_AWAY.
|
||||
|
@ -1,3 +1,87 @@
|
||||
2022-09-20 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
PR fortran/104143
|
||||
* gfortran.dg/c-interop/c407b-2.f90: Remove dg-error.
|
||||
* gfortran.dg/assumed_type_16.f90: New test.
|
||||
* gfortran.dg/assumed_type_17.f90: New test.
|
||||
|
||||
2022-09-20 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/106986
|
||||
* gfortran.dg/pr106986.f90: New test.
|
||||
|
||||
2022-09-20 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/106985
|
||||
* gfortran.dg/pr106985.f90: New test.
|
||||
|
||||
2022-09-20 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* g++.dg/modules/xtreme-header-2.h: Include <execution>.
|
||||
* g++.dg/modules/xtreme-header-6.h: Include implemented
|
||||
C++20 library headers.
|
||||
* g++.dg/modules/xtreme-header.h: Likewise. Remove
|
||||
NO_ASSOCIATED_LAMBDA workaround. Include implemented C++23
|
||||
library headers.
|
||||
|
||||
2022-09-20 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* g++.dg/modules/auto-3.h: New test.
|
||||
* g++.dg/modules/auto-3_a.H: New test.
|
||||
* g++.dg/modules/auto-3_b.C: New test.
|
||||
|
||||
2022-09-20 José Rui Faustino de Sousa <jrfsousa@gmail.com>
|
||||
|
||||
PR fortran/100132
|
||||
* gfortran.dg/PR100132.f90: New test.
|
||||
|
||||
2022-09-20 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
* gcc.dg/vect/pr106914.c: New test.
|
||||
* g++.dg/vect/pr106794.cc: Likewise.
|
||||
|
||||
2022-09-20 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
* gcc.dg/vect/vect-gather-5.c: New test.
|
||||
|
||||
2022-09-20 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
PR tree-optimization/106970
|
||||
* gcc.dg/tree-ssa/pr106970.c: New test.
|
||||
|
||||
2022-09-20 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
PR c++/106761
|
||||
* g++.dg/modules/pr106761.h: New test.
|
||||
* g++.dg/modules/pr106761_a.H: New test.
|
||||
* g++.dg/modules/pr106761_b.C: New test.
|
||||
|
||||
2022-09-20 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* g++.dg/warn/Wclass-memaccess.C: Replace "the the" with "the".
|
||||
* g++.dg/warn/Wconversion-real-integer2.C: Likewise.
|
||||
* gcc.target/powerpc/p9-extract-1.c: Likewise.
|
||||
* gcc.target/s390/s390.exp: Likewise.
|
||||
* gcc.target/s390/zvector/vec-cmp-2.c: Likewise.
|
||||
* gdc.dg/torture/simd_store.d: Likewise.
|
||||
* gfortran.dg/actual_array_offset_1.f90: Likewise.
|
||||
* gfortran.dg/pdt_15.f03: Likewise.
|
||||
* gfortran.dg/pointer_array_8.f90: Likewise.
|
||||
|
||||
2022-09-20 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
* gcc.target/i386/pr106910-1.c: New test.
|
||||
|
||||
2022-09-20 konglin1 <lingling.kong@intel.com>
|
||||
|
||||
* gcc.target/i386/pr105735-1.c: New test.
|
||||
* gcc.target/i386/pr105735-2.c: New test.
|
||||
|
||||
2022-09-20 konglin1 <lingling.kong@intel.com>
|
||||
|
||||
PR target/106887
|
||||
* gcc.target/i386/vect-bfloat16-2c.c: New test.
|
||||
|
||||
2022-09-19 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c/106947
|
||||
|
@ -1,3 +1,8 @@
|
||||
2022-09-20 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/c_global/cstdlib [!_GLIBCXX_HOSTED] (quick_exit): Fix
|
||||
missing space.
|
||||
|
||||
2022-09-16 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/106953
|
||||
|
Loading…
x
Reference in New Issue
Block a user