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

https://gcc.gnu.org/g:645b13625163a3f74643e9f6eaabdb8d2e5a1169

commit r13-7006-g645b13625163a3f74643e9f6eaabdb8d2e5a1169
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Wed Apr 5 00:16:53 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 76 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  5 ++++
 gcc/fortran/ChangeLog   |  6 ++++
 gcc/po/ChangeLog        |  4 +++
 gcc/testsuite/ChangeLog | 55 +++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  |  6 ++++
 7 files changed, 153 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4e0d745c74e..a3438d3a6d1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,79 @@
+2023-04-04  Hans-Peter Nilsson  <hp@axis.com>
+
+	* doc/md.texi (Including Patterns): Fix page break.
+
+2023-04-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/109386
+	* range-op-float.cc (foperator_lt::op1_range, foperator_lt::op2_range,
+	foperator_le::op1_range, foperator_le::op2_range,
+	foperator_gt::op1_range, foperator_gt::op2_range,
+	foperator_ge::op1_range, foperator_ge::op2_range): Make r varying for
+	BRS_FALSE case even if the other op is maybe_isnan, not just
+	known_isnan.
+	(foperator_unordered_lt::op1_range, foperator_unordered_lt::op2_range,
+	foperator_unordered_le::op1_range, foperator_unordered_le::op2_range,
+	foperator_unordered_gt::op1_range, foperator_unordered_gt::op2_range,
+	foperator_unordered_ge::op1_range, foperator_unordered_ge::op2_range):
+	Make r varying for BRS_TRUE case even if the other op is maybe_isnan,
+	not just known_isnan.
+
+2023-04-04  Marek Polacek  <polacek@redhat.com>
+
+	PR sanitizer/109107
+	* fold-const.cc (fold_binary_loc): Use TYPE_OVERFLOW_SANITIZED
+	when associating.
+	* match.pd: Use TYPE_OVERFLOW_SANITIZED.
+
+2023-04-04  Stam Markianos-Wright  <stam.markianos-wright@arm.com>
+
+	* config/arm/mve.md (mve_vcvtq_n_to_f_<supf><mode>): Swap operands.
+	(mve_vcreateq_f<mode>): Swap operands.
+
+2023-04-04  Andrew Stubbs  <ams@codesourcery.com>
+
+	* config/gcn/gcn-valu.md (one_cmpl<mode>2<exec>): New.
+
+2023-04-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/109384
+	* common/config/riscv/riscv-common.cc (riscv_subset_list::parse):
+	Reword diagnostics about zfinx conflict with f, formatting fixes.
+
+2023-04-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+	* config/sol2.h (LIB_SPEC): Don't link with -lpthread.
+
+2023-04-04  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/109304
+	* tree-profile.cc (tree_profiling): Use symtab node
+	availability to decide whether to skip adjusting calls.
+	Do not adjust calls to internal functions.
+
+2023-04-04  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/108807
+	* config/rs6000/rs6000.cc (rs6000_expand_vector_set_var_p9): Fix gen
+	function for permutation control vector by considering big endianness.
+
+2023-04-04  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/108699
+	* config/rs6000/altivec.md (*p9v_parity<mode>2): Rename to ...
+	(rs6000_vprtyb<mode>2): ... this.
+	* config/rs6000/rs6000-builtins.def (VPRTYBD): Replace parityv2di2 with
+	rs6000_vprtybv2di2.
+	(VPRTYBW): Replace parityv4si2 with rs6000_vprtybv4si2.
+	(VPRTYBQ): Replace parityv1ti2 with rs6000_vprtybv1ti2.
+	* config/rs6000/vector.md (parity<mode>2 with VEC_IP): Expand with
+	popcountv16qi2 and the corresponding rs6000_vprtyb<mode>2.
+
+2023-04-04  Hans-Peter Nilsson  <hp@axis.com>
+	    Sandra Loosemore  <sandra@codesourcery.com>
+
+	* doc/md.texi (Insn Splitting): Tweak wording for readability.
+
 2023-04-03  Martin Jambor  <mjambor@suse.cz>
 
 	PR ipa/109303
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 8ddc41d9cfc..643efe31568 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230404
+20230405
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 5fe0bcff505..908c66cc839 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2023-04-04  Jason Merrill  <jason@redhat.com>
+
+	PR c++/107484
+	* decl2.cc (find_last_decl): Return early if DECL_USE_TEMPLATE.
+
 2023-04-03  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/109300
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 10b81c98e2a..78991576f06 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2023-04-04  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/104349
+	* expr.cc (check_restricted): Adjust check for valid variables in
+	restricted expressions: make no exception for module variables.
+
 2023-04-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
 	* dump-parse-tree.cc (get_c_type_name): Fix "long_long"
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index f892db5b10a..f08e145fdf2 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,7 @@
+2023-04-04  Joseph Myers  <joseph@codesourcery.com>
+
+	* gcc.pot: Regenerate.
+
 2023-04-03  Joseph Myers  <joseph@codesourcery.com>
 
 	* sv.po: Update.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a4e7ece6e77..b7cbffd5e5c 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,58 @@
+2023-04-04  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/104349
+	* gfortran.dg/der_charlen_1.f90: Adjust dg-patterns.
+	* gfortran.dg/pr104349.f90: New test.
+
+2023-04-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/109386
+	* gcc.c-torture/execute/ieee/pr109386.c: New test.
+
+2023-04-04  Marek Polacek  <polacek@redhat.com>
+
+	PR sanitizer/109107
+	* c-c++-common/ubsan/pr109107-1.c: New test.
+	* c-c++-common/ubsan/pr109107-2.c: New test.
+	* c-c++-common/ubsan/pr109107-3.c: New test.
+	* c-c++-common/ubsan/pr109107-4.c: New test.
+
+2023-04-04  Stam Markianos-Wright  <stam.markianos-wright@arm.com>
+
+	* gcc.target/arm/mve/intrinsics/vcreateq_f16.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_f32.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_s16.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_s32.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_s64.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_s8.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_u16.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_u32.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_u64.c: Tighten test.
+	* gcc.target/arm/mve/intrinsics/vcreateq_u8.c: Tighten test.
+
+2023-04-04  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/109384
+	* gcc.target/riscv/arch-19.c: Expect a different message about zfinx
+	vs. f conflict.
+
+2023-04-04  Richard Biener  <rguenther@suse.de>
+
+	PR tree-optimization/109304
+	* gcc.dg/pr109304.c: New testcase.
+
+2023-04-04  Kewen Lin  <linkw@linux.ibm.com>
+
+	PR target/108699
+	* gcc.target/powerpc/p9-vparity.c: Add scan-assembler-not for vpopcntb
+	to distinguish parity byte from parity.
+	* gcc.target/powerpc/pr108699.c: New test.
+
+2023-04-04  Jason Merrill  <jason@redhat.com>
+
+	PR c++/107484
+	* g++.dg/lookup/friend25.C: New test.
+
 2023-04-03  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/109300
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index d4ba35e2dc9..c3632c33da9 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2023-04-04  Jonathan Wakely  <jwakely@redhat.com>
+
+	* doc/xml/manual/extensions.xml: Remove std::bad_exception from
+	example program.
+	* doc/html/manual/ext_demangling.html: Regenerate.
+
 2023-03-31  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR tree-optimization/107087

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

only message in thread, other threads:[~2023-04-05  0:17 UTC | newest]

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