public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-2749] Daily bump.
@ 2022-09-21  0:19 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-09-21  0:19 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:5e4f5c25d62d2f7853adebeabf1888eca8140b09

commit r13-2749-g5e4f5c25d62d2f7853adebeabf1888eca8140b09
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Wed Sep 21 00:19:14 2022 +0000

    Daily bump.

Diff:
---
 contrib/ChangeLog       |  5 +++
 gcc/ChangeLog           | 86 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/ada/ChangeLog       |  6 ++++
 gcc/cp/ChangeLog        | 13 ++++++++
 gcc/fortran/ChangeLog   | 37 +++++++++++++++++++++
 gcc/testsuite/ChangeLog | 84 +++++++++++++++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  |  5 +++
 8 files changed, 237 insertions(+), 1 deletion(-)

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index d76b1b48885..c3755300767 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -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.
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6dded16c0e3..0def653a237 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 54f97aaa2e6..2407ee3feb4 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220920
+20220921
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index a1c43754e08..fe048b898a4 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -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.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index dc4ce202c35..afcb0f0e2c7 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -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
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index f5f8ac04286..a53df9339f7 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a6048dab9ff..340a9f9acf9 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index a55293e7956..fb02c6435b2 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-21  0:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-21  0:19 [gcc r13-2749] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).