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

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

commit r14-6361-gfbfe43daec6443978df65530dc5f7f3f8a4e6f9e
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Dec 10 00:16:47 2023 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 29 +++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  9 +++++++++
 gcc/testsuite/ChangeLog | 26 ++++++++++++++++++++++++++
 libstdc++-v3/ChangeLog  | 15 +++++++++++++++
 5 files changed, 80 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2ff57b89c8d..68754648cbb 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,32 @@
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/112887
+	* tree-ssa-phiopt.cc (hoist_adjacent_loads): Change type of
+	param_align, param_align_bits, offset1, offset2, size2 and align1
+	variables from int or unsigned int to unsigned HOST_WIDE_INT.
+
+2023-12-09  Costas Argyris  <costas.argyris@gmail.com>
+	    Jakub Jelinek  <jakub@redhat.com>
+
+	PR driver/93019
+	* gcc.cc (driver::finalize): Call XDELETEVEC on mdswitches before
+	clearing it.
+
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	* attribs.h (any_nonignored_attribute_p): Declare.
+	* attribs.cc (any_nonignored_attribute_p): New function.
+
+2023-12-09  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	PR target/112932
+	* config/riscv/vector.md (movmisalign<mode>): Fix VLSmode bugs.
+
+2023-12-09  Alexandre Oliva  <oliva@adacore.com>
+
+	* tree-emutls.cc: Include diagnostic-core.h.
+	(pass_ipa_lower_emutls::gate): Skip if errors were seen.
+
 2023-12-08  Vladimir N. Makarov  <vmakarov@redhat.com>
 
 	PR rtl-optimization/112875
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 98957cde41b..19d30f16654 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20231209
+20231210
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 3939154623d..58f84237d78 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,12 @@
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	* parser.cc (cp_parser_statement, cp_parser_expression_statement,
+	cp_parser_declaration, cp_parser_asm_definition): Don't diagnose
+	ignored attributes if !any_nonignored_attribute_p.
+	* decl.cc (grokdeclarator): Likewise.
+	* name-lookup.cc (handle_namespace_attrs, finish_using_directive):
+	Don't diagnose ignoring of attr_ignored_p attributes.
+
 2023-12-08  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/83167
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 61cb3fba5d6..73aa606733f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,29 @@
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/112887
+	* gcc.dg/pr112887.c: New test.
+
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/112924
+	* gcc.dg/pr112924.c: New test.
+
+2023-12-09  Jakub Jelinek  <jakub@redhat.com>
+
+	* g++.dg/warn/Wno-attributes-1.C: New test.
+
+2023-12-09  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+	PR target/112932
+	* gcc.target/riscv/rvv/autovec/vls/misalign-1.c: Ditto.
+	* gcc.target/riscv/rvv/autovec/pr112932.c: New test.
+
+2023-12-09  Hans-Peter Nilsson  <hp@axis.com>
+
+	PR testsuite/112786
+	* gcc.dg/tree-ssa/scev-3.c, gcc.dg/tree-ssa/scev-4.c,
+	gcc.dg/tree-ssa/scev-5.c: Remove.
+
 2023-12-08  Patrick Palka  <ppalka@redhat.com>
 
 	PR c++/83167
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4ffaa9d558b..cd9d121374e 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,18 @@
+2023-12-09  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/111826
+	* include/bits/version.def (format): Update value.
+	* include/bits/version.h: Regenerate.
+	* testsuite/std/format/functions/format.cc:
+
+2023-12-09  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/112876
+	* include/std/ranges (ranges::to): Do not try to use an iterator
+	returned by the container's emplace or insert member functions.
+	* testsuite/std/ranges/conv/1.cc (Cont4::emplace, Cont4::insert):
+	Use the iterator parameter. Do not return an iterator.
+
 2023-12-07  Patrick Palka  <ppalka@redhat.com>
 
 	* include/std/ranges (__detail::_ToClosure): Replace with ...

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

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

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