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

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

commit r13-5059-gd901bf8a44a85e1285b7f678056aa2eed0118f56
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Jan 8 00:16:59 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 20 ++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/ada/ChangeLog       | 18 ++++++++++++++++++
 gcc/jit/ChangeLog       |  5 +++++
 gcc/m2/ChangeLog        |  6 ++++++
 gcc/testsuite/ChangeLog |  6 ++++++
 libatomic/ChangeLog     |  6 ++++++
 libffi/ChangeLog        |  6 ++++++
 libgcc/ChangeLog        |  8 ++++++++
 libgfortran/ChangeLog   |  6 ++++++
 libgomp/ChangeLog       |  6 ++++++
 libiberty/ChangeLog     |  6 ++++++
 libssp/ChangeLog        |  5 +++++
 libstdc++-v3/ChangeLog  |  9 +++++++++
 libvtv/ChangeLog        |  7 +++++++
 15 files changed, 115 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5c1d16e4057..e36f738eaf0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,23 @@
+2023-01-07  Takayuki 'January June' Suwa  <jjsuwa_sys3175@yahoo.co.jp>
+
+	* config/xtensa/xtensa.cc
+	(xtensa_split_imm_two_addends, xtensa_emit_add_imm):
+	New helper functions.
+	(xtensa_set_return_address, xtensa_output_mi_thunk):
+	Change to use the helper function.
+	(xtensa_emit_adjust_stack_ptr): Ditto.
+	And also change to try reusing the content of scratch register
+	A9 if the register is not modified in the function body.
+
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* config/xtensa/xtensa-dynconfig.c: Define `WIN32_LEAN_AND_MEAN`
+	before <windows.h>.
+	* diagnostic-color.cc: Likewise.
+	* plugin.cc: Likewise.
+	* prefix.cc: Likewise.
+
 2023-01-06  Joseph Myers  <joseph@codesourcery.com>
 
 	* doc/extend.texi (__builtin_tgmath): Do not restate standard rule
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 1178712294c..bcc46c04f3c 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230107
+20230108
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index b51a0ef0aa0..562a3399f13 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,21 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* adaint.c: Define `WIN32_LEAN_AND_MEAN` before `#include
+	<windows.h>`.
+	* cio.c: Likewise.
+	* ctrl_c.c: Likewise.
+	* expect.c: Likewise.
+	* gsocket.h: Likewise.
+	* mingw32.h: Likewise.
+	* mkdir.c: Likewise.
+	* rtfinal.c: Likewise.
+	* rtinit.c: Likewise.
+	* seh_init.c: Likewise.
+	* sysdep.c: Likewise.
+	* terminals.c: Likewise.
+	* tracebak.c: Likewise.
+
 2023-01-05  Eric Botcazou  <ebotcazou@adacore.com>
 
 	* exp_util.adb (Make_CW_Equivalent_Type) <Has_Tag_Of_Type>: Tweak.
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog
index 0bc37c5ee48..4a79c5c3d70 100644
--- a/gcc/jit/ChangeLog
+++ b/gcc/jit/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* jit-w32.h: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
+
 2022-12-21  Martin Liska  <mliska@suse.cz>
 
 	* jit-playback.h: Use unused attribute.
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index 2d38a607c91..9108b58f82b 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  Iain Sandoe  <iain@sandoe.co.uk>
+
+	* gm2-libs-min/libc.c (abort): Update declaration to match the
+	expected form, add no-return attribute.
+	(exit): Add no-return attribute.
+
 2023-01-05  Iain Sandoe  <iain@sandoe.co.uk>
 
 	PR modula2/107631
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index cc85416b337..64407048d3f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  John David Anglin  <danglin@gcc.gnu.org>
+
+	* gcc.dg/atomic/c11-atomic-exec-4.c: Add "-D_HPUX_SOURCE" option
+	on *-*-hpux*.
+	* gcc.dg/atomic/c11-atomic-exec-5.c: Likewise.
+
 2023-01-06  Joseph Myers  <joseph@codesourcery.com>
 
 	* gcc.dg/builtin-tgmath-3.c: Update expectations and add more
diff --git a/libatomic/ChangeLog b/libatomic/ChangeLog
index 9ba33893c16..16ef38e04f5 100644
--- a/libatomic/ChangeLog
+++ b/libatomic/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* config/mingw/lock.c: Define `WIN32_LEAN_AND_MEAN` before
+	<windows.h>.
+
 2022-11-16  Martin Liska  <mliska@suse.cz>
 
 	* Makefile.in: Re-generate.
diff --git a/libffi/ChangeLog b/libffi/ChangeLog
index 0716062d4ab..cadd5e719cc 100644
--- a/libffi/ChangeLog
+++ b/libffi/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* src/aarch64/ffi.c: Define `WIN32_LEAN_AND_MEAN` before
+	<windows.h>.
+
 2022-12-21  Iain Sandoe  <iain@sandoe.co.uk>
 
 	* LOCAL_PATCHES: Add patch to fix i686 darwin build.
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index d9a1aef0dcf..6511abe604b 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,11 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* config/i386/enable-execute-stack-mingw32.c: Define
+	`WIN32_LEAN_AND_MEAN` before <windows.h>.
+	* libgcc2.c: Likewise.
+	* unwind-generic.h: Likewise.
+
 2023-01-03  Florian Weimer  <fweimer@redhat.com>
 
 	* unwind-dw2-execute_cfa.h: New file.  Extracted from
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 97887c90552..02b7a20537e 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* intrinsics/sleep.c: Define `WIN32_LEAN_AND_MEAN` before
+	<windows.h>.
+
 \f
 Copyright (C) 2023 Free Software Foundation, Inc.
 
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index fa1976d6fdb..1250fd698ee 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* config/mingw32/proc.c: Define `WIN32_LEAN_AND_MEAN` before
+	<windows.h>.
+
 2023-01-05  Jakub Jelinek  <jakub@redhat.com>
 
 	PR c++/108286
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 0e2289d81b7..f11fff19c2b 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* make-temp-file.c: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
+	* pex-win32.c: Likewise.
+
 2022-11-23  Marek Polacek  <polacek@redhat.com>
 
 	Revert:
diff --git a/libssp/ChangeLog b/libssp/ChangeLog
index a38de729a06..2a303b85b39 100644
--- a/libssp/ChangeLog
+++ b/libssp/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* ssp.c: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
+
 2022-10-12  Martin Liska  <mliska@suse.cz>
 
 	* configure: Regenerate.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 3f1eb69dc65..7bfcf99e8c2 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,12 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* src/c++11/system_error.cc: Define `WIN32_LEAN_AND_MEAN` before
+	<windows.h>.
+	* src/c++11/thread.cc: Likewise.
+	* src/c++17/fs_ops.cc: Likewise.
+	* src/filesystem/ops.cc: Likewise.
+
 2023-01-06  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/108228
diff --git a/libvtv/ChangeLog b/libvtv/ChangeLog
index b415c8673ec..88705423c4b 100644
--- a/libvtv/ChangeLog
+++ b/libvtv/ChangeLog
@@ -1,3 +1,10 @@
+2023-01-07  LIU Hao  <lh_mouse@126.com>
+
+	PR middle-end/108300
+	* vtv_malloc.cc: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
+	* vtv_rts.cc: Likewise.
+	* vtv_utils.cc: Likewise.
+
 2022-10-31  Lulu Cheng  <chenglulu@loongson.cn>
 	    qijingwen  <qijingwen@loongson.cn>

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

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

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