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

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

commit r14-6972-gb368d79998003c2e5657a91055cb27991988b44b
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Jan 7 00:17:43 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 22 ++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/fortran/ChangeLog   |  7 +++++++
 gcc/testsuite/ChangeLog | 25 +++++++++++++++++++++++++
 libgomp/ChangeLog       | 13 +++++++++++++
 libstdc++-v3/ChangeLog  |  5 +++++
 6 files changed, 73 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index af1c152f092..2b58fccae1a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,25 @@
+2024-01-06  Jiahao Xu  <xujiahao@loongson.cn>
+
+	* config/loongarch/lasx.md: Set the unused bits in operand[3] to 0.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	PR target/113248
+	* config/riscv/riscv-vsetvl.cc (pre_vsetvl::fuse_local_vsetvl_info):
+	Update the MAX_SEW.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* config/riscv/riscv-vector-costs.cc (loop_invariant_op_p): New function.
+	(variable_vectorized_p): Teach loop invariant.
+	(has_unexpected_spills_p): Ditto.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* config/riscv/riscv-protos.h (whole_reg_to_reg_move_p): New function.
+	* config/riscv/riscv-v.cc (whole_reg_to_reg_move_p): Ditto.
+	* config/riscv/vector.md: Allow non-vlmax with len = NUNITS simplification.
+
 2024-01-05  Richard Sandiford  <richard.sandiford@arm.com>
 
 	PR target/113104
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 7d3dc9a39c2..f5f14f7e81c 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240106
+20240107
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 896d588deb4..22a511054ee 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,10 @@
+2024-01-06  Harald Anlauf  <anlauf@gmx.de>
+	    José Rui Faustino de Sousa  <jrfsousa@gmail.com>
+
+	PR fortran/96724
+	* iresolve.cc (gfc_resolve_repeat): Force conversion to
+	gfc_charlen_int_kind before call to gfc_multiply.
+
 2024-01-04  David Malcolm  <dmalcolm@redhat.com>
 
 	* lang.opt.urls: New file, autogenerated by
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 003a18cb37f..a0d601b2247 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,28 @@
+2024-01-06  Harald Anlauf  <anlauf@gmx.de>
+	    José Rui Faustino de Sousa  <jrfsousa@gmail.com>
+
+	PR fortran/96724
+	* gfortran.dg/repeat_8.f90: New test.
+
+2024-01-06  Jiahao Xu  <xujiahao@loongson.cn>
+
+	* gcc.target/loongarch/vector/lasx/lasx-xvpremi.c: Removed.
+	* gcc.target/loongarch/vector/lasx/lasx-xvpermi_q.c: New test.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	PR target/113248
+	* gcc.target/riscv/rvv/vsetvl/pr113248.c: New test.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul4-12.c: New test.
+	* gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul8-14.c: New test.
+
+2024-01-06  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	* gcc.target/riscv/rvv/base/vf_avl-4.c: New test.
+
 2024-01-05  Richard Sandiford  <richard.sandiford@arm.com>
 
 	PR target/113104
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index d0d96741c57..eccc898b534 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,16 @@
+2024-01-06  Tobias Burnus  <tobias@codesourcery.com>
+
+	* libgomp.texi (OpenMP Technical Report 12): Fix a typo.
+	(Device Memory Routines): Fix OpenMP 5.1 spec refs; add
+	omp_target_is_accessible.
+	(Environment Display Routine): Uncomment and add
+	omp_display_env description.
+	(OMP_DISPLAY_ENV): Update wording, add 'see also'.
+
+2024-01-06  Mark Wielaard  <mark@klomp.org>
+
+	* configure: Regenerate.
+
 2024-01-03  Jakub Jelinek  <jakub@redhat.com>
 
 	* libgomp.texi: Bump @copying's copyright year.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 1c43b2e720e..4782698b5b3 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2024-01-06  Gwenole Beauchesne  <gb.devel@gmail.com>
+
+	* testsuite/tr1/8_c_compatibility/cinttypes/functions.cc: Use
+	nonnull arguments to strtoimax() and wcstoimax() functions.
+
 2024-01-05  Jonathan Wakely  <jwakely@redhat.com>
 
 	* src/c++17/fs_path.cc (path::_List::reserve): Limit maximum

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

only message in thread, other threads:[~2024-01-07  0:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-07  0:18 [gcc r14-6972] 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).