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

https://gcc.gnu.org/g:b2bf04739fb4170d24a3a83327fdf2b5d1a88520

commit r13-1896-gb2bf04739fb4170d24a3a83327fdf2b5d1a88520
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sat Jul 30 00:16:30 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 57 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  7 ++++++
 gcc/fortran/ChangeLog   |  5 +++++
 gcc/testsuite/ChangeLog | 14 ++++++++++++
 libgomp/ChangeLog       |  9 ++++++++
 libstdc++-v3/ChangeLog  |  6 ++++++
 7 files changed, 99 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8c86ab24c74..c5d5cb7d8f0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,60 @@
+2022-07-29  Andrew Stubbs  <ams@codesourcery.com>
+
+	* config/gcn/gcn-valu.md (V_INT_noHI): New iterator.
+	(<expander><mode>3<exec>): Use V_INT_noHI.
+	(v<expander><mode>3<exec>): Likewise.
+
+2022-07-29  Andrew Stubbs  <ams@codesourcery.com>
+
+	* config/gcn/gcn.md (one_cmpldi2): New.
+
+2022-07-29  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/105679
+	* tree-ssa-threadbackward.cc
+	(back_threader_profitability::profitable_path_p): Avoid threading
+	when the entry edge is probably never executed.
+
+2022-07-29  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106422
+	* tree-ssa-threadupdate.cc (fwd_jt_path_registry::update_cfg):
+	Check whether we can copy thread blocks and cancel the thread if not.
+
+2022-07-29  Jakub Jelinek  <jakub@redhat.com>
+
+	PR middle-end/106449
+	* omp-expand.cc (expand_omp_simd): Fix up handling of pointer
+	iterators in non-rectangular simd loops.  Unshare fd->loops[i].n2
+	or n2 before regimplifying it inside of a condition.
+
+2022-07-29  Jakub Jelinek  <jakub@redhat.com>
+
+	* omp-expand.cc (expand_omp_for_init_counts, expand_omp_for_init_vars,
+	extract_omp_for_update_vars, expand_omp_for_ordered_loops,
+	expand_omp_simd): Don't fold_convert second argument to
+	fold_build_pointer_plus to sizetype.
+
+2022-07-29  Lulu Cheng  <chenglulu@loongson.cn>
+
+	* config.in: Regenerate.
+	* config/loongarch/loongarch.h (ASM_PREFERRED_EH_DATA_FORMAT):
+	Select the value of the macro definition according to whether
+	HAVE_AS_EH_FRAME_PCREL_ENCODING_SUPPORT is defined.
+	* configure: Regenerate.
+	* configure.ac: Reinstate HAVE_AS_EH_FRAME_PCREL_ENCODING_SUPPORT test.
+
+2022-07-29  Richard Biener  <rguenther@suse.de>
+
+	* gimple-ssa-warn-restrict.cc (builtin_memref::set_base_and_offset):
+	Use CONVERT_EXPR_CODE_P.
+
+2022-07-29  Richard Biener  <rguenther@suse.de>
+
+	* tree-vect-patterns.cc (vect_recog_bool_pattern): Use
+	get_vectype_for_scalar_type instead of
+	vect_get_vector_types_for_stmt.
+
 2022-07-28  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/105893
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 87ee4964bb0..3d4df682b7f 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220729
+20220730
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index a5ed51a294e..8ff65cb07d1 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,10 @@
+2022-07-29  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/106448
+	* parser.cc (cp_parser_omp_atomic): For simple cast followed by
+	CPP_QUERY token, don't try cp_parser_binary_operation if compare
+	is true.
+
 2022-07-26  Marek Polacek  <polacek@redhat.com>
 
 	PR c++/106311
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index acd60ffbf7c..0473563c3a2 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,8 @@
+2022-07-29  Tobias Burnus  <tobias@codesourcery.com>
+
+	* openmp.cc (resolve_omp_clauses): Permit assumed-size arrays
+	in uniform clause.
+
 2022-07-26  Harald Anlauf  <anlauf@gmx.de>
 
 	PR fortran/103504
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f47c2ea8fd3..9dbecbc8d76 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,17 @@
+2022-07-29  Tobias Burnus  <tobias@codesourcery.com>
+
+	* gfortran.dg/gomp/declare-simd-3.f90: New test.
+
+2022-07-29  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/106422
+	* gcc.dg/torture/pr106422.c: New testcase.
+
+2022-07-29  Jakub Jelinek  <jakub@redhat.com>
+
+	PR c++/106448
+	* c-c++-common/gomp/atomic-32.c: New test.
+
 2022-07-28  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/105893
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 5a836a979f8..0de22b19069 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,12 @@
+2022-07-29  Tobias Burnus  <tobias@codesourcery.com>
+
+	* testsuite/libgomp.c-c++-common/pr106449-2.c: New test.
+
+2022-07-29  Jakub Jelinek  <jakub@redhat.com>
+
+	PR middle-end/106449
+	* testsuite/libgomp.c-c++-common/pr106449.c: New test.
+
 2022-07-12  Tobias Burnus  <tobias@codesourcery.com>
 
 	* target.c (gomp_target_init): Added tailing '\n' to gomp_debug.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index b309c689286..6450871c405 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2022-07-29  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/104443
+	* include/bits/stl_iterator.h (common_iterator::operator->):
+	Change return type to just auto.
+
 2022-07-26  Thomas Rodgers  <trodgers@redhat.com>
 
 	* include/bits/atomic_wait.h (__atomic_spin): Merge spin loops.


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

only message in thread, other threads:[~2022-07-30  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-30  0:17 [gcc r13-1896] 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).