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

https://gcc.gnu.org/g:8d07b193d7df9523215120bb20bf06181be795b6

commit r13-5233-g8d07b193d7df9523215120bb20bf06181be795b6
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Wed Jan 18 00:17:21 2023 +0000

    Daily bump.

Diff:
---
 contrib/ChangeLog       |  9 +++++++++
 gcc/ChangeLog           | 13 +++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/go/ChangeLog        |  6 ++++++
 gcc/m2/ChangeLog        | 27 +++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 18 ++++++++++++++++++
 libbacktrace/ChangeLog  |  4 ++++
 libgm2/ChangeLog        | 12 ++++++++++++
 libgomp/ChangeLog       |  5 +++++
 libphobos/ChangeLog     |  5 +++++
 libsanitizer/ChangeLog  |  5 +++++
 libstdc++-v3/ChangeLog  | 10 ++++++++++
 13 files changed, 121 insertions(+), 1 deletion(-)

diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index a5505afc075..45fded44e24 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,12 @@
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* update-copyright.py: Ignore test_patches.txt.
+
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* gcc-changelog/test_patches.txt: The CR character was removed
+	with ./contrib/update-copyright.py which I'm going to change.
+
 2023-01-16  Jakub Jelinek  <jakub@redhat.com>
 
 	PR other/108413
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index daddbdff40f..a8da61564d1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,16 @@
+2023-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
+
+	* config/bpf/bpf.cc (bpf_option_override): Disable
+	-fstack-protector.
+
+2023-01-17  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/106523
+	* tree-ssa-forwprop.cc (simplify_rotate): For the
+	patterns with (-Y) & (B - 1) in one operand's shift
+	count and Y in another, if T2 has wider precision than T,
+	punt if Y could have a value in [B, B2 - 1] range.
+
 2023-01-16  H.J. Lu  <hjl.tools@gmail.com>
 
 	PR target/105980
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 9081c2e74e5..5943f2b395d 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230117
+20230118
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 5e6feea9aa7..3f3e03c1943 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/108421
+	* interface.cc (get_expr_storage_size): Check that we actually have
+	an integer value before trying to extract it with mpz_get_si.
+
 2023-01-12  Tobias Burnus  <tobias@codesourcery.com>
 
 	PR fortran/107706
diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog
index bd03955ad83..a4173f42bd8 100644
--- a/gcc/go/ChangeLog
+++ b/gcc/go/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-17  Ian Lance Taylor  <iant@golang.org>
+
+	PR go/108426
+	* go-gcc.cc (Gcc_backend::Gcc_backend): Define __builtin_ctzl and
+	__builtin_clzl.  Patch by Andrew Pinski.
+
 2023-01-02  Jakub Jelinek  <jakub@redhat.com>
 
 	* gccgo.texi: Bump @copyrights-go year.
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index 7364f1c3538..75acef3b4fe 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,30 @@
+2023-01-17  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* mc-boot/GM2RTS.c: Rebuilt.
+	* mc-boot/GM2RTS.h: Rebuilt.
+	* mc-boot/Gdecl.c: Rebuilt.
+	* mc-boot/GmcOptions.c: Rebuilt.
+	* mc/mcOptions.mod (displayVersion):
+	Split first printf into three components
+
+2023-01-17  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* gm2-libs-iso/M2RTS.def (Halt): Parameter file renamed to filename.
+	(HaltC): New procedure declaration.
+	(ErrorMessage): Parameter file renamed to filename.
+	* gm2-libs-iso/M2RTS.mod (Halt): Parameter file renamed to
+	filename.
+	(HaltC): New procedure implementation.
+	(ErrorStringC): New procedure implementation.
+	(ErrorMessageC): New procedure implementation.
+	* gm2-libs/M2RTS.def (Halt): Parameter file renamed to filename.
+	(HaltC): New procedure declaration.
+	(ErrorMessage): Parameter file renamed to filename.
+	* gm2-libs/M2RTS.mod (Halt): Parameter file renamed to filename.
+	(HaltC): New procedure implementation.
+	(ErrorStringC): New procedure implementation.
+	(ErrorMessageC): New procedure implementation.
+
 2023-01-16  Gaius Mulley  <gaiusmod2@gmail.com>
 
 	* mc-boot-ch/Glibc.c (libc_time): New function.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f96175e3a2b..0cb635bc2d8 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,21 @@
+2023-01-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/108421
+	* gfortran.dg/pr108421.f90: New test.
+
+2023-01-17  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/106523
+	* c-c++-common/rotate-2.c (f5, f6, f7, f8, f13, f14, f15, f16,
+	f37, f38, f39, f40, f45, f46, f47, f48): Add assertions using
+	__builtin_unreachable about shift count.
+	* c-c++-common/rotate-2b.c: New test.
+	* c-c++-common/rotate-4.c (f5, f6, f7, f8, f13, f14, f15, f16,
+	f37, f38, f39, f40, f45, f46, f47, f48): Add assertions using
+	__builtin_unreachable about shift count.
+	* c-c++-common/rotate-4b.c: New test.
+	* gcc.c-torture/execute/pr106523.c: New test.
+
 2023-01-16  Andrew Pinski  <apinski@marvell.com>
 
 	* lib/target-supports.exp (add_options_for_tls): Remove
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog
index 087f12ad50a..c5f8e97edbd 100644
--- a/libbacktrace/ChangeLog
+++ b/libbacktrace/ChangeLog
@@ -1,3 +1,7 @@
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* Makefile.in: Regenerate.
+
 2023-01-06  Ian Lance Taylor  <iant@golang.org>
 
 	PR libbacktrace/108297
diff --git a/libgm2/ChangeLog b/libgm2/ChangeLog
index 91cb91ac79a..d83a6d0e8c2 100644
--- a/libgm2/ChangeLog
+++ b/libgm2/ChangeLog
@@ -1,3 +1,15 @@
+2023-01-17  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	* libm2iso/RTco.cc (_M2_RTco_fini): Call M2RTS_HaltC.
+	(newSem): Call M2RTS_HaltC.
+	(currentThread): Call M2RTS_HaltC.
+	(never): Call M2RTS_HaltC.
+	(defined): Call M2RTS_HaltC.
+	(initThread): Call M2RTS_HaltC.
+	(RTco_transfer): Call M2RTS_HaltC.
+	* libm2iso/m2rts.h (M2RTS_Halt): Provide parameter names.
+	(M2RTS_HaltC): New procedure declaration.
+
 2023-01-06  v  <gaiusmod2@gmail.com>
 
 	* configure: Regenerate.
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 1250fd698ee..02f85d86a56 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* Makefile.in: Regenerate.
+	* configure: Regenerate.
+
 2023-01-07  LIU Hao  <lh_mouse@126.com>
 
 	PR middle-end/108300
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 7587d10b540..65ae39ed6eb 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* Makefile.in: Regenerate.
+	* libdruntime/Makefile.in: Regenerate.
+
 2022-12-11  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* libdruntime/MERGE: Merge upstream druntime c8ae4adb2e.
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
index 76857414654..aa849bfc02e 100644
--- a/libsanitizer/ChangeLog
+++ b/libsanitizer/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+	* sanitizer_common/sanitizer_platform_interceptors.h: Cherry-pick
+	llvm-project revision 951cf656b2faaf6fc0baa867293c0cb0ab131951.
+
 2022-12-19  Jakub Jelinek  <jakub@redhat.com>
 
 	* hwasan/Makefile.am (nodist_toolexeclib_HEADERS): Set to
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 01233e9751c..e311d7c9404 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,13 @@
+2023-01-17  Jonathan Wakely  <jwakely@redhat.com>
+
+	* acinclude.m4 (GLIBCXX_ZONEINFO_DIR): Check $target_os instead
+	of $host. Fix check for file being present during native build.
+	* configure: Regenerate.
+
+2023-01-17  Martin Liska  <mliska@suse.cz>
+
+	* src/libbacktrace/Makefile.in: Regenerate.
+
 2023-01-16  Jonathan Wakely  <jwakely@redhat.com>
 
 	* src/c++20/tzdb.cc (_GLIBCXX_USE_CXX11_ABI): Define to 1.

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

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

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