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

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

commit r14-9052-gc1d1571329b4e0923a104b6139cd7db2f0aa1c1d
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Feb 18 00:17:05 2024 +0000

    Daily bump.

Diff:
---
 gcc/DATESTAMP           |  2 +-
 gcc/cp/ChangeLog        |  6 ++++++
 gcc/d/ChangeLog         | 38 ++++++++++++++++++++++++++++++++++++++
 gcc/fortran/ChangeLog   | 17 +++++++++++++++++
 gcc/testsuite/ChangeLog | 33 +++++++++++++++++++++++++++++++++
 libgfortran/ChangeLog   | 17 +++++++++++++++++
 libphobos/ChangeLog     |  5 +++++
 libstdc++-v3/ChangeLog  |  6 ++++++
 8 files changed, 123 insertions(+), 1 deletion(-)

diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 70fc80dac6c0..4baf53f5c01b 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240217
+20240218
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 67b07f14df4e..f7c8dca0e5e8 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2024-02-17  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/113158
+	* search.cc (maybe_check_overriding_exception_spec): Defer checking
+	when a noexcept couldn't be instantiated & evaluated to false/true.
+
 2024-02-16  Marek Polacek  <polacek@redhat.com>
 
 	DR 1351
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 76c07400df6d..06cc55763c5b 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,41 @@
+2024-02-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* dmd/MERGE: Merge upstream dmd 9471b25db9.
+	* dmd/VERSION: Bump version to v2.107.1-rc.1.
+	* Make-lang.in (D_FRONTEND_OBJS): Add d/cxxfrontend.o.
+	* d-attribs.cc (build_attributes): Update for new front-end interface.
+	* d-builtins.cc (build_frontend_type): Likewise.
+	(strip_type_modifiers): Likewise.
+	(covariant_with_builtin_type_p): Likewise.
+	* d-codegen.cc (declaration_type): Likewise.
+	(parameter_type): Likewise.
+	(build_array_struct_comparison): Likewise.
+	(void_okay_p): Likewise.
+	* d-convert.cc (convert_expr): Likewise.
+	(check_valist_conversion): Likewise.
+	* d-lang.cc (d_generate_ddoc_file): Likewise.
+	(d_parse_file): Likewise.
+	* d-target.cc (TargetCPP::toMangle): Likewise.
+	(TargetCPP::typeInfoMangle): Likewise.
+	(TargetCPP::thunkMangle): Likewise.
+	(TargetCPP::parameterType): Likewise.
+	* decl.cc (d_mangle_decl): Likewise.
+	(DeclVisitor::visit): Likewise.
+	(DeclVisitor::visit (CAsmDeclaration *)): New method.
+	(get_symbol_decl): Update for new front-end interface.
+	(layout_class_initializer): Likewise.
+	* expr.cc (ExprVisitor::visit): Likewise.
+	* intrinsics.cc (maybe_set_intrinsic): Likewise.
+	(expand_intrinsic_rotate): Likewise.
+	* modules.cc (layout_moduleinfo_fields): Likewise.
+	(layout_moduleinfo): Likewise.
+	* runtime.cc (get_libcall_type): Likewise.
+	* typeinfo.cc (make_frontend_typeinfo): Likewise.
+	(TypeInfoVisitor::visit): Likewise.
+	(create_typeinfo): Likewise.
+	* types.cc (same_type_p): Likewise.
+	(build_ctype): Likewise.
+
 2024-02-12  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	PR d/113125
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 8fdbd5d32d30..9e84f0d45160 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,20 @@
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+	PR fortran/113503
+	* trans-expr.cc (alloc_scalar_allocatable_subcomponent): Don't
+	overwrite expr2->ts.u.cl->backend_decl, instead set size to
+	expr2->ts.u.cl->backend_decl first and use size instead of
+	expr2->ts.u.cl->backend_decl.
+	(gfc_trans_subcomponent_assign): Emit se.pre into block
+	before calling alloc_scalar_allocatable_subcomponent instead of
+	after it.
+
+2024-02-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/113911
+	* trans-array.cc (gfc_trans_deferred_array): Do not clobber
+	deferred length for a character variable passed as dummy argument.
+
 2024-02-15  Kwok Cheung Yeung  <kcyeung@baylibre.com>
 
 	* dump-parse-tree.cc (show_attr): Handle omp_declare_target_indirect
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a66a1155e64c..1e20fb0523a5 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,36 @@
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/105473
+	* gfortran.dg/pr105473.f90: New test.
+
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+	PR fortran/113503
+	* gfortran.dg/pr113503_1.f90: New test.
+	* gfortran.dg/pr113503_2.f90: New test.
+
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/107068
+	* gfortran.dg/pr107068.f90: New test.
+
+2024-02-17  Marek Polacek  <polacek@redhat.com>
+
+	PR c++/113158
+	* g++.dg/cpp0x/noexcept83.C: New test.
+
+2024-02-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/113911
+	* gfortran.dg/allocatable_length_2.f90: New test.
+	* gfortran.dg/bind_c_optional-2.f90: Enable deferred-length test.
+
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+	* lib/target-supports.exp (check_effective_target_lra): Rewrite
+	to list some heavily used always LRA targets and otherwise check the
+	-fdump-rtl-reload-details dump for messages specific to LRA.
+
 2024-02-16  Andrew Pinski  <quic_apinski@quicinc.com>
 
 	* g++.dg/torture/vector-struct-1.C: Add -Wstrict-aliasing.
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 2c2cd657542e..d3ce2d7d3c7f 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,20 @@
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/105473
+	* io/list_read.c (eat_separator): Reject comma as a
+	seprator when it is being used as a decimal point.
+	(parse_real): Reject a '.' when is should be a comma.
+	(read_real): Likewise.
+	* io/read.c (read_f): Add more checks for ',' and '.'
+	conditions.
+
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+	PR libfortran/107068
+	* io/list_read.c (read_logical): When looking for a possible
+	variable name, check for left paren, indicating a possible
+	array reference.
+
 2024-02-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
 	PR fortran/99210
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index c290b48f4b2d..f6ac413ba23b 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2024-02-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* libdruntime/MERGE: Merge upstream druntime 9471b25db9.
+	* src/MERGE: Merge upstream phobos 547886846.
+
 2024-02-12  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	PR d/113667
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 0b0896f597cc..9ab80b82aad4 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2024-02-17  François Dumont  <fdumont@gcc.gnu.org>
+
+	* include/bits/stl_algobase.h (std::__niter_base): Redefine the overload
+	definitions for __gnu_debug::_Safe_iterator.
+	* include/debug/safe_iterator.tcc (std::__niter_base): Adapt declarations.
+
 2024-02-16  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/87744

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

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

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