aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2025-02-09 00:16:35 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2025-02-09 00:16:35 +0000
commit58856a6ec58b17025cf98c1a61b696d25bd02e40 (patch)
treef39ed940281935faf5ff245d084a0208bed46123 /gcc
parent0c7109abf215975f4b30a696c15541184f75d637 (diff)
downloadgcc-58856a6ec58b17025cf98c1a61b696d25bd02e40.zip
gcc-58856a6ec58b17025cf98c1a61b696d25bd02e40.tar.gz
gcc-58856a6ec58b17025cf98c1a61b696d25bd02e40.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog27
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/fortran/ChangeLog10
-rw-r--r--gcc/testsuite/ChangeLog56
4 files changed, 94 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3465553..468b788 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,30 @@
+2025-02-08 Georg-Johann Lay <avr@gjlay.de>
+
+ PR target/118764
+ * doc/invoke.texi (AVR Options): Fix typos.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * config/gcn/gcn.md (exception_receiver): 'define_expand'.
+ * config/nvptx/nvptx.md (exception_receiver): Likewise.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * doc/sourcebuild.texi (Effective-Target Keywords): Clarify that
+ effective-target 'exceptions' and 'exceptions_enabled' are
+ orthogonal.
+
+2025-02-08 Jakub Jelinek <jakub@redhat.com>
+
+ PR target/118776
+ * config/i386/sse.md (<code><mode>3_mask): Use VI1248_AVX512VLBW
+ iterator rather than VI48_AVX512VL.
+ (<mask_codefor><code><mode>3<mask_name>): Rename to ...
+ (*avx512bw_<code><mode>3<mask_name>): ... this. Use
+ nonimmediate_operand rather than register_operand predicate and %v
+ rather than v constraint for operand 1 and adjust condition to reject
+ MEMs in both operand 1 and 2.
+
2025-02-07 Andrew Pinski <quic_apinski@quicinc.com>
PR target/114522
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index f9d9d8c..11e801e 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20250208
+20250209
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index ab734d6..2be47c9 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,13 @@
+2025-02-08 Sandra Loosemore <sloosemore@baylibre.com>
+
+ PR middle-end/107067
+ * parse.cc (parse_omp_do): Diagnose missing "OMP END METADIRECTIVE"
+ after loop.
+ (parse_omp_structured_block): Likewise for strictly structured block.
+ (parse_omp_metadirective_body): Use better test for variants ending
+ at different places. Issue a user diagnostic at the end if any
+ were inconsistent, instead of calling gcc_assert.
+
2025-02-07 Harald Anlauf <anlauf@gmx.de>
PR fortran/59252
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 1384a76..0a5ca1b 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,59 @@
+2025-02-08 Sandra Loosemore <sloosemore@baylibre.com>
+
+ PR middle-end/107067
+ * gfortran.dg/gomp/metadirective-11.f90: Remove the dg-ice, update
+ for current behavior, and add more tests to exercise the new error
+ code.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * lib/gcc-dg.exp (gcc-dg-prune): Turn
+ 'sorry, unimplemented: exception handling not supported' into
+ UNSUPPORTED.
+ * gcc.dg/pr104464.c: Remove GCN XFAIL.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * gcc.dg/cleanup-12.c: Don't 'dg-skip-if "" { ! nonlocal_goto }'.
+ * gcc.dg/cleanup-13.c: Likewise.
+ * gcc.dg/cleanup-5.c: Likewise.
+ * gcc.dg/gimplefe-44.c: Don't
+ 'dg-require-effective-target nonlocal_goto'.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * lib/target-supports.exp (check_effective_target_exceptions):
+ 'return 0' for '[istarget nvptx-*-*]'.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ PR target/118772
+ * lib/target-supports.exp (check_effective_target_exceptions):
+ 'return 0' for '[istarget bpf-*-*]'.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * lib/gcc-dg.exp (gcc-dg-prune): Clarify effective-target
+ 'exceptions_enabled'.
+ * lib/target-supports.exp
+ (check_effective_target_exceptions_enabled): Don't consider
+ effective-target 'exceptions'.
+
+2025-02-08 Thomas Schwinge <tschwinge@baylibre.com>
+
+ * gcc.dg/pr88870.c: Don't 'dg-require-effective-target nonlocal_goto'.
+
+2025-02-08 Jakub Jelinek <jakub@redhat.com>
+
+ PR target/118776
+ * gcc.target/i386/pr118776.c: New test.
+
+2025-02-08 H.J. Lu <hjl.tools@gmail.com>
+
+ PR rtl-optimization/111673
+ * gcc.target/i386/pr111673.c: Verify that PUSH/POP can be
+ skipped.
+
2025-02-07 Harald Anlauf <anlauf@gmx.de>
PR fortran/59252