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

https://gcc.gnu.org/g:0263e9d5d84b4abbb53e73fbc8d72fd233764fc8

commit r13-6134-g0263e9d5d84b4abbb53e73fbc8d72fd233764fc8
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Feb 19 00:16:39 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 38 ++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c-family/ChangeLog  |  8 ++++++++
 gcc/c/ChangeLog         | 21 +++++++++++++++++++++
 gcc/cp/ChangeLog        | 13 +++++++++++++
 gcc/testsuite/ChangeLog | 35 +++++++++++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  |  5 +++++
 7 files changed, 121 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b98a3948374..a473929844b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,41 @@
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/108819
+	* tree-ssa-reassoc.cc (update_ops): Fold new stmt in place.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/108832
+	* config/i386/i386-protos.h (ix86_replace_reg_with_reg): Declare.
+	* config/i386/i386-expand.cc (ix86_replace_reg_with_reg): New
+	function.
+	* config/i386/i386.md: Replace replace_rtx calls in all peephole2s
+	with ix86_replace_reg_with_reg.
+
+2023-02-18  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* doc/invoke.texi (AVR Options): Update link to AVR-LibC.
+
+2023-02-18  Xi Ruoyao  <xry111@xry111.site>
+
+	* config.gcc (triplet_abi): Set its value based on $with_abi,
+	instead of $target.
+	(la_canonical_triplet): Set it after $triplet_abi is set
+	correctly.
+	* config/loongarch/t-linux (MULTILIB_OSDIRNAMES): Make the
+	multiarch tuple for lp64d "loongarch64-linux-gnu" (without
+	"f64" suffix).
+
+2023-02-18  Andrew Pinski  <apinski@marvell.com>
+
+	* match.pd: Remove #if GIMPLE around the
+	"1 - a" pattern
+
+2023-02-18  Andrew Pinski  <apinski@marvell.com>
+
+	* value-query.h (get_range_query): Return the global ranges
+	for a nullptr func.
+
 2023-02-17  Siddhesh Poyarekar  <siddhesh@gotplt.org>
 
 	* doc/invoke.texi (@item -Wall): Fix typo in
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index ac1301f036f..03e603a86b9 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230218
+20230219
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 5bc8fa5582c..41977aac2e2 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,11 @@
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+	PR c/105660
+	* c-attribs.cc (append_access_attr): Use order of arguments when
+	construction string.
+	(append_access_attr_idxs): Rename and make static.
+	* c-warn.cc (warn_parm_array_mismatch): Add assertion.
+
 2023-02-16  Patrick Palka  <ppalka@redhat.com>
 
 	* c-common.h: Mechanically drop static from static inline
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 26eeee2653d..d3cd60bd909 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,24 @@
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+	PR c/108375
+	* c-decl.cc (decl_jump_unsafe): Use c_type_variably_modified_p.
+	(diagnose_mismatched_decl): Dito.
+	(warn_about_goto): Dito:
+	(c_check_switch_jump_warnings): Dito.
+	(finish_decl): Dito.
+	(finish_struct): Dito.
+	(grokdeclarator): Set C_TYPE_VARIABLY_MODIFIED.
+	(finish_struct): Set C_TYPE_VARIABLY_MODIFIED.
+	* c-objc-common.cc (c_var_mod_p): New function.
+	(c_var_unspec_p): Remove.
+	* c-objc-common.h: Set lang hook.
+	* c-parser.cc (c_parser_declararion_or_fndef): Use c_type_variably_modified_p.
+	(c_parser_typeof_specifier): Dito.
+	(c_parser_has_attribute_expression): Dito.
+	(c_parser_generic_selection): Dito.
+	* c-tree.h: Define C_TYPE_VARIABLY_MODIFIED and define c_var_mode_p.
+	* c-typeck.cc: Remove c_vla_mod_p and use C_TYPE_VARIABLY_MODIFIED.
+
 2023-02-16  Patrick Palka  <ppalka@redhat.com>
 
 	* c-parser.h: Mechanically drop static from static inline
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 33fc32f29ca..20b2fe56148 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,16 @@
+2023-02-18  Jason Merrill  <jason@redhat.com>
+
+	DR 2518
+	PR c++/52809
+	PR c++/53638
+	PR c++/87389
+	PR c++/89741
+	PR c++/92099
+	PR c++/104041
+	PR c++/104691
+	* semantics.cc (finish_static_assert): Don't diagnose in
+	template context.
+
 2023-02-17  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/108243
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 1f8e7247218..fcef7d879be 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,38 @@
+2023-02-18  Jason Merrill  <jason@redhat.com>
+
+	DR 2518
+	PR c++/52809
+	PR c++/53638
+	PR c++/87389
+	PR c++/89741
+	PR c++/92099
+	PR c++/104041
+	PR c++/104691
+	* g++.dg/DRs/dr2518.C: New test.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/108819
+	* gcc.dg/pr108819.c: New test.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+	PR target/108832
+	* gcc.target/i386/pr108832.c: New test.
+
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+	PR c/108375
+	* gcc.dg/pr108375-1.c: New test.
+	* gcc.dg/pr108375-2.c: New test.
+
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+	PR c/105660
+	PR c/105660
+	* gcc.dg/pr105660-1.c: New test.
+	* gcc.dg/pr105660-2.c: New test.
+
 2023-02-17  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/108243
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 00aafa46b17..7eb41dfd285 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2023-02-18  Gerald Pfeifer  <gerald@pfeifer.com>
+
+	* doc/xml/faq.xml: Switch two links to www.open-std.org to https.
+	* doc/html/faq.html: Regenerate.
+
 2023-02-16  Matthias Kretz  <m.kretz@gsi.de>
 
 	* include/experimental/bits/simd_math.h (__hypot): Bitcasting

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

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

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