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

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

commit r13-4811-ga996888327c2248b59db7244333740c2b51578c9
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Wed Dec 21 00:17:15 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 31 +++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 26 ++++++++++++++++++++++++++
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/rust/ChangeLog      |  6 ++++++
 gcc/testsuite/ChangeLog | 37 +++++++++++++++++++++++++++++++++++++
 6 files changed, 107 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bc11164bcc8..dbd97af45ff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,34 @@
+2022-12-20  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/101886
+	* tree.cc (walk_tree_1) <case TREE_VEC>: Walk the elements
+	in forward instead of reverse order.
+	<case VECTOR_CST>: Likewise.
+
+2022-12-20  Andrew MacLeod  <amacleod@redhat.com>
+
+	PR tree-optimization/108139
+	* gimple-range-cache.cc (ranger_cache::fill_block_cache): Do not
+	use equivalences originating from PHIS.
+
+2022-12-20  Richard Biener  <rguenther@suse.de>
+
+	PR d/104749
+	* doc/install.texi (GDC): Document GDC 9.4 or later is required
+	to build the D language frontend.
+
+2022-12-20  Jiufu Guo  <guojiufu@linux.ibm.com>
+
+	PR target/103743
+	* config/rs6000/rs6000-protos.h (can_be_rotated_to_lowbits): New.
+	(can_be_rotated_to_positive_16bits): New.
+	(can_be_rotated_to_negative_15bits): New.
+	* config/rs6000/rs6000.cc (can_be_rotated_to_lowbits): New definition.
+	(can_be_rotated_to_positive_16bits): New definition.
+	(can_be_rotated_to_negative_15bits): New definition.
+	* config/rs6000/rs6000.md (*rotate_on_cmpdi): New define_insn_and_split.
+	(eqne): Move earlier.
+
 2022-12-19  Jason Merrill  <jason@redhat.com>
 
 	* sort.cc: Disable -Wconditionally-supported in
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 142f05d4354..1bcb133d5ce 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221220
+20221221
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 73f1c54dec7..0edaadbc489 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,29 @@
+2022-12-20  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/101886
+	* pt.cc (find_template_parameter_info::parm_list_tail):
+	New data member.
+	(keep_template_parm): Use parm_list_tail to append rather
+	than prepend to parm_list.
+
+2022-12-20  Iain Sandoe  <iain@sandoe.co.uk>
+
+	* mangle.cc (write_mangled_name): Append the helper function
+	suffixes here...
+	(write_encoding): ... rather than here.
+
+2022-12-20  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/103346
+	PR c++/104278
+	PR c++/102553
+	* pt.cc (tsubst_copy) <case VIEW_CONVERT_EXPR>: Move the
+	handling of C++20 template parameter object wrappers to ...
+	(tsubst_copy_and_build) <case VIEW_CONVERT_EXPR>: ... here.
+	Accept non-TEMPLATE_PARM_INDEX inner operand.  Handle empty
+	TREE_TYPE on substituted inner operand.  Remove same_type_p
+	assert.  Also handle REF_PARENTHESIZED_P VIEW_CONVERT_EXPRs.
+
 2022-12-19  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/100881
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 8ca9af2a996..f95aa8bfc6d 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2022-12-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95375
+	* decl.cc (verify_bind_c_sym): Extend interoperability check to
+	CLASS variables.
+
 2022-12-18  Steve Kargl  <kargl@gcc.gnu.org>
 
 	PR fortran/107397
diff --git a/gcc/rust/ChangeLog b/gcc/rust/ChangeLog
index fea0f7fa7be..035f5ea2f0f 100644
--- a/gcc/rust/ChangeLog
+++ b/gcc/rust/ChangeLog
@@ -1,3 +1,9 @@
+2022-12-20  Marc Poulhiès  <dkm@kataplop.net>
+
+	PR rust/108113
+	* Make-lang.in (rust.serial): New variable.
+	(rust1$(exeext)): Depend on $(rust.prev). Call LINK_PROGRESS.
+
 2022-12-14  Jakub Jelinek  <jakub@redhat.com>
 
 	PR rust/106072
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index fdb864b0cca..82d088b490f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,40 @@
+2022-12-20  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/101886
+	* g++.dg/concepts/diagnostic12.C: Adjust expected order of
+	template parameters within pretty printed parameter mapping.
+	* g++.dg/concepts/auto6.C: New test.
+
+2022-12-20  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/95375
+	* gfortran.dg/bind_c_procs_4.f90: New test.
+
+2022-12-20  Iain Sandoe  <iain@sandoe.co.uk>
+
+	* g++.dg/coroutines/torture/extern-c-coroutine.C: New test.
+
+2022-12-20  Patrick Palka  <ppalka@redhat.com>
+
+	PR c++/103346
+	PR c++/104278
+	PR c++/102553
+	* g++.dg/cpp2a/nontype-class52a.C: New test.
+	* g++.dg/cpp2a/nontype-class53.C: New test.
+	* g++.dg/cpp2a/nontype-class54.C: New test.
+	* g++.dg/cpp2a/nontype-class55.C: New test.
+
+2022-12-20  Andrew MacLeod  <amacleod@redhat.com>
+
+	PR tree-optimization/108139
+	* gcc.dg/pr108139.c: New.
+
+2022-12-20  Jiufu Guo  <guojiufu@linux.ibm.com>
+
+	PR target/103743
+	* gcc.target/powerpc/pr103743.c: New test.
+	* gcc.target/powerpc/pr103743_1.c: New test.
+
 2022-12-19  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/100881

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

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

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