aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2025-04-06 00:17:12 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2025-04-06 00:17:12 +0000
commitbbecb88c39bb744831024f5cb9cc30dde98e347d (patch)
tree409ce21937c65c094fa875ebc248a8dd00fb3248 /gcc
parentf60570b26446781c0205981804f6aa4ff1708b12 (diff)
downloadgcc-bbecb88c39bb744831024f5cb9cc30dde98e347d.zip
gcc-bbecb88c39bb744831024f5cb9cc30dde98e347d.tar.gz
gcc-bbecb88c39bb744831024f5cb9cc30dde98e347d.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cobol/ChangeLog8
-rw-r--r--gcc/cp/ChangeLog12
-rw-r--r--gcc/testsuite/ChangeLog17
5 files changed, 47 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f2bb985..4ffbd9b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,12 @@
+2025-04-05 Sandra Loosemore <sloosemore@baylibre.com>
+
+ PR middle-end/112589
+ * common.opt (-fcf-protection): Add documentation string.
+ * doc/invoke.texi (Option Summary): Add entry for -fcf-protection
+ without argument.
+ (Instrumentation Options): Tidy the -fcf-protection entry and
+ and add documention for the form without an argument.
+
2025-04-04 Jakub Jelinek <jakub@redhat.com>
PR lto/119625
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index d5996ab4..b362d0a 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20250405
+20250406
diff --git a/gcc/cobol/ChangeLog b/gcc/cobol/ChangeLog
index 9f16500..b1b310c 100644
--- a/gcc/cobol/ChangeLog
+++ b/gcc/cobol/ChangeLog
@@ -1,3 +1,11 @@
+2025-04-05 Iain Sandoe <iain@sandoe.co.uk>
+
+ * gcobolspec.cc (SPEC_FILE): New.
+ (lang_specific_driver): Make the 'need libgcobol' flag global
+ so that the prelink callback can use it. Libm use is now handled
+ via the library spec.
+ (lang_specific_pre_link): Include libgcobol.spec where needed.
+
2025-04-04 Bob Dubner <rdubner@symas.com>
* cobol1.cc: Eliminate cobol_langhook_post_options.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 91ea35d..44b592b 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,15 @@
+2025-04-05 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/118249
+ * constexpr.cc (potential_constant_expression_1)
+ <case INDIRECT_REF>: Remove obsolete *this handling.
+
+2025-04-05 Jason Merrill <jason@redhat.com>
+
+ PR c++/118629
+ * name-lookup.cc (pushdecl_outermost_localscope): Look for an
+ sk_block.
+
2025-04-04 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/119564
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 25aca79..040dc1c 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,20 @@
+2025-04-05 Patrick Palka <ppalka@redhat.com>
+
+ PR c++/118249
+ * g++.dg/cpp0x/constexpr-reinterpret2.C: Expect error at
+ call site of the non-constexpr functions.
+ * g++.dg/cpp23/constexpr-nonlit12.C: Likewise.
+ * g++.dg/cpp0x/constexpr-ref14.C: New test.
+
+2025-04-05 Iain Sandoe <iain@sandoe.co.uk>
+
+ * lib/cobol.exp: Conditionally add a path for libgcobol.spec.
+
+2025-04-05 Jason Merrill <jason@redhat.com>
+
+ PR c++/118629
+ * g++.dg/cpp0x/lambda/lambda-__func__3.C: New test.
+
2025-04-04 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/119564