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

https://gcc.gnu.org/g:65c64105a816a887092b954dee0340e45c9495b4

commit r13-6149-g65c64105a816a887092b954dee0340e45c9495b4
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Tue Feb 21 00:18:20 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        | 13 +++++++++++++
 gcc/rust/ChangeLog      |  4 ++++
 gcc/testsuite/ChangeLog | 28 ++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  | 13 +++++++++++++
 6 files changed, 105 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a473929844b..3ab2938388a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,49 @@
+2023-02-20  Uroš Bizjak  <ubizjak@gmail.com>
+
+	* config/i386/predicates.md
+	(general_x64constmem_operand): New predicate.
+	* config/i386/i386.md (*cmpqi_ext<mode>_1):
+	Use nonimm_x64constmem_operand.
+	(*cmpqi_ext<mode>_3): Use general_x64constmem_operand.
+	(*addqi_ext<mode>_1): Ditto.
+	(*testqi_ext<mode>_1): Ditto.
+	(*andqi_ext<mode>_1): Ditto.
+	(*andqi_ext<mode>_1_cc): Ditto.
+	(*<any_or:code>qi_ext<mode>_1): Ditto.
+	(*xorqi_ext<mode>_1_cc): Ditto.
+
+2023-02-20  Jakub Jelinek  <jakub2redhat.com>
+
+	PR target/108862
+	* config/rs6000/rs6000.md (umaddditi4): Swap gen_maddlddi4 with
+	gen_umadddi4_highpart{,_le}.
+
+2023-02-20  Kito Cheng  <kito.cheng@sifive.com>
+
+	* config/riscv/riscv.md (prefetch): Use r instead of p for the
+	address operand.
+	(riscv_prefetchi_<mode>): Ditto.
+
+2023-02-20  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108816
+	* tree-vect-loop-manip.cc (vect_loop_versioning): Adjust
+	versioning condition split prerequesite, assert required
+	invariant.
+
+2023-02-20  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108825
+	* tree-ssa-loop-manip.cc (verify_loop_closed_ssa): For
+	loop-local verfication only verify there's no pending SSA
+	update.
+
+2023-02-20  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108819
+	* tree-ssa-loop-niter.cc (number_of_iterations_cltz): Check
+	we have an SSA name as iv_2 as expected.
+
 2023-02-18  Jakub Jelinek  <jakub@redhat.com>
 
 	PR tree-optimization/108819
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 09ddb49ab8a..6d7db2787db 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230220
+20230221
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 20b2fe56148..302e06665b9 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,16 @@
+2023-02-20  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/101073
+	* constexpr.cc (cxx_eval_call_expression): Replace shortcutting trivial
+	constructor/op= with a checking assert.
+
+2023-02-20  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/108829
+	* pt.cc (prepend_one_capture): Set LAMBDA_CAPTURE_EXPLICIT_P.
+	(tsubst_lambda_expr): Pass LAMBDA_CAPTURE_EXPLICIT_P to
+	prepend_one_capture.
+
 2023-02-18  Jason Merrill  <jason@redhat.com>
 
 	DR 2518
diff --git a/gcc/rust/ChangeLog b/gcc/rust/ChangeLog
index 6c6d7f9d8c9..0f4aad549d5 100644
--- a/gcc/rust/ChangeLog
+++ b/gcc/rust/ChangeLog
@@ -1,3 +1,7 @@
+2023-02-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+	* backend/rust-tree.cc: Include memmodel.h.
+
 2023-02-17  Thomas Schwinge  <thomas@codesourcery.com>
 
 	* backend/rust-tree.cc: '#include "tm_p.h"'.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index fcef7d879be..f4f7ec2bafd 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,31 @@
+2023-02-20  Jakub Jelinek  <jakub2redhat.com>
+
+	PR target/108862
+	* gcc.dg/pr108862.c: New test.
+	* gcc.target/powerpc/pr108862.c: New test.
+
+2023-02-20  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/101073
+	* g++.dg/cpp0x/constexpr-nsdmi3.C: New test.
+	* g++.dg/cpp1y/constexpr-nsdmi10.C: New test.
+
+2023-02-20  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/108829
+	* g++.dg/cpp0x/lambda/lambda-108829-2.C: New test.
+	* g++.dg/cpp0x/lambda/lambda-108829.C: New test.
+
+2023-02-20  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108816
+	* gcc.dg/torture/pr108816.c: New testcase.
+
+2023-02-20  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/108825
+	* gcc.dg/torture/pr108825.c: New testcase.
+
 2023-02-18  Jason Merrill  <jason@redhat.com>
 
 	DR 2518
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7eb41dfd285..03837e0431d 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,16 @@
+2023-02-20  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* config/abi/post/m68k-linux-gnu/baseline_symbols.txt: Update.
+
+2023-02-20  Matthias Kretz  <m.kretz@gsi.de>
+
+	* include/experimental/bits/simd.h (__extract_part, split):
+	Use reserved name for template parameter.
+
+2023-02-20  Andreas Schwab  <schwab@suse.de>
+
+	* config/abi/post/riscv64-linux-gnu/baseline_symbols.txt: Update.
+
 2023-02-18  Gerald Pfeifer  <gerald@pfeifer.com>
 
 	* doc/xml/faq.xml: Switch two links to www.open-std.org to https.

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

only message in thread, other threads:[~2023-02-21  0:18 UTC | newest]

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