public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: GCC Administrator <gccadmin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r14-9510] Daily bump.
Date: Mon, 18 Mar 2024 00:17:09 +0000 (GMT)	[thread overview]
Message-ID: <20240318001710.E466A3858CD1@sourceware.org> (raw)

https://gcc.gnu.org/g:27d2e933a0dbe4fb0a2e4ebac7811dc38b913553

commit r14-9510-g27d2e933a0dbe4fb0a2e4ebac7811dc38b913553
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon Mar 18 00:16:48 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           |  4 ++++
 gcc/DATESTAMP           |  2 +-
 gcc/d/ChangeLog         |  5 +++++
 gcc/fortran/ChangeLog   |  6 ++++++
 gcc/m2/ChangeLog        | 41 +++++++++++++++++++++++++++++++++++++++++
 gcc/testsuite/ChangeLog | 11 +++++++++++
 libphobos/ChangeLog     |  4 ++++
 libstdc++-v3/ChangeLog  |  9 +++++++++
 8 files changed, 81 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9e546f261cc..1b1e5b0ba6d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2024-03-17  John David Anglin  <danglin@gcc.gnu.org>
+
+	* config/pa/pa.cc (pa_delegitimize_address): Delegitimize UNSPEC_TP.
+
 2024-03-16  Jakub Jelinek  <jakub@redhat.com>
 
 	PR target/114175
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 7495d4c6422..83552dd360e 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240317
+20240318
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index 843a3b7fb57..81f053b5764 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,8 @@
+2024-03-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* dmd/MERGE: Merge upstream dmd 855353a1d9.
+	* dmd/VERSION:
+
 2024-03-10  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	PR d/112285
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 7781daf40d2..9ffad8299f2 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2024-03-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/101135
+	* trans-array.cc (gfc_get_dataptr_offset): Check for optional
+	arguments being present before dereferencing data pointer.
+
 2024-03-15  Paul Thomas  <pault@gcc.gnu.org>
 
 	PR fortran/87477
diff --git a/gcc/m2/ChangeLog b/gcc/m2/ChangeLog
index b051f017899..bd5a564250b 100644
--- a/gcc/m2/ChangeLog
+++ b/gcc/m2/ChangeLog
@@ -1,3 +1,44 @@
+2024-03-17  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	PR modula2/114296
+	* gm2-compiler/M2ALU.mod (ElementsSolved): Add tokenno parameter.
+	Add constant checks and generate error messages.
+	(EvalSetValues): Pass tokenno parameter to ElementsSolved.
+	* gm2-compiler/M2LexBuf.mod (stop): New procedure.
+	(MakeVirtualTok): Call stop if caret = BadTokenNo.
+	* gm2-compiler/M2Quads.def (BuildNulExpression): Add tokpos
+	parameter.
+	(BuildSetStart): Ditto.
+	(BuildEmptySet): Ditto.
+	(BuildConstructorEnd): Add startpos parameter.
+	(BuildTypeForConstructor): Add tokpos parameter.
+	* gm2-compiler/M2Quads.mod (BuildNulExpression): Add tokpos
+	parameter and push tokpos to the quad stack.
+	(BuildSetStart): Add tokpos parameter and push tokpos.
+	(BuildSetEnd): Rewrite.
+	(BuildEmptySet): Add tokpos parameter and push tokpos with
+	the set	type.
+	(BuildConstructorStart): Pop typepos.
+	(BuildConstructorEnd): Add startpos parameter.
+	Create valtok from startpos and cbratokpos.
+	(BuildTypeForConstructor): Add tokpos parameter.
+	* gm2-compiler/M2Range.def (InitAssignmentRangeCheck): Rename
+	d to des and e to expr.
+	Add destok and exprtok parameters.
+	* gm2-compiler/M2Range.mod (InitAssignmentRangeCheck): Rename
+	d to des and e to expr.
+	Add destok and exprtok parameters.
+	Save destok and exprtok into range record.
+	(FoldAssignment): Pass exprtok to TryDeclareConstant.
+	* gm2-compiler/P3Build.bnf (ComponentValue): Rewrite.
+	(Constructor): Rewrite.
+	(ConstSetOrQualidentOrFunction): Rewrite.
+	(SetOrQualidentOrFunction): Rewrite.
+	* gm2-compiler/PCBuild.bnf (ConstSetOrQualidentOrFunction): Rewrite.
+	(SetOrQualidentOrFunction): Rewrite.
+	* gm2-compiler/PHBuild.bnf (Constructor): Rewrite.
+	(ConstSetOrQualidentOrFunction): Rewrite.
+
 2024-03-14  Gaius Mulley  <gaiusmod2@gmail.com>
 
 	PR modula2/114294
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 3092127fbf3..d36e4803079 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,14 @@
+2024-03-17  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/101135
+	* gfortran.dg/missing_optional_dummy_6a.f90: Adjust diagnostic pattern.
+	* gfortran.dg/ubsan/missing_optional_dummy_8.f90: New test.
+
+2024-03-17  Gaius Mulley  <gaiusmod2@gmail.com>
+
+	PR modula2/114296
+	* gm2/pim/fail/badtype2.mod: New test.
+
 2024-03-16  Jakub Jelinek  <jakub@redhat.com>
 
 	PR target/114175
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 7d3afd3d3ff..f728beeb11f 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,7 @@
+2024-03-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+	* libdruntime/MERGE: Merge upstream druntime 855353a1d9.
+
 2024-03-03  Iain Buclaw  <ibuclaw@gdcproject.org>
 
 	* libdruntime/MERGE: Merge upstream druntime 02d6d07a69.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index ac5e6e921fd..c4e5f57e1a3 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,12 @@
+2024-03-17  François Dumont  <fdumont@gcc.gnu.org>
+
+	PR libstdc++/114316
+	* include/debug/safe_iterator.tcc (_Safe_iterator<>::_M_valid_range):
+	First check if both iterators are value-initialized before checking if
+	singular.
+	* testsuite/23_containers/set/debug/114316.cc: New test case.
+	* testsuite/23_containers/vector/debug/114316.cc: New test case.
+
 2024-03-14  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/114325

                 reply	other threads:[~2024-03-18  0:17 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240318001710.E466A3858CD1@sourceware.org \
    --to=gccadmin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).