summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2025-11-16 00:19:20 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2025-11-16 00:19:20 +0000
commit9d0f374375e9c1674ac60559435b1a30d4fbe3cb (patch)
treed01d21850b30598eb355ab9e3a7c2f70d7a8910c
parent85066ad6c301390fbab2805307a6cc61aef22c21 (diff)
Daily bump.
-rw-r--r--gcc/ChangeLog43
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cobol/ChangeLog7
-rw-r--r--gcc/cp/ChangeLog33
-rw-r--r--gcc/testsuite/ChangeLog23
-rw-r--r--libstdc++-v3/ChangeLog10
6 files changed, 117 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fe5b70b4314..e89f68e15d5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,46 @@
+2025-11-15 Jason Xu <bravejason@outlook.com>
+
+ * config.gcc (aarch64-*-mingw*): Set use_gcc_stdint to wrap.
+
+2025-11-15 Jeff Law <jlaw@ventanamicro.com>
+
+ * config/riscv/riscv.cc (risc_legitimize_move): Use convert_modes
+ rather than gen_extend_insn for most cases.
+ * config/riscv/riscv.md (addv<mode>4): Likewise.
+ (uaddv<mode>4, subv<mode>4, usubv<mode>4): Likewise.
+ (mulv<mode>4, umulv<mode>4): Likewise.
+ * config/riscv/sync.md (atomic_compare_and_swap<mode>): Likewise.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * config/aarch64/aarch64.md (mov<GPF:mode><GPI:mode>cc): Delete.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * config/aarch64/aarch64.md(mov<ALLI_GPF:mode>cc): Use new predicate.
+ (mov<GPF:mode><GPI:mode>cc): Likewise.
+ (<neg_not_op><mode>cc): Likewise.
+ * config/aarch64/predicates.md (aarch64_comparison_operator_cc):
+ New predicate.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * config/aarch64/aarch64.md (mov<ALLI_GPF:mode>): Delete
+ redundant check.
+ (mov<GPF:mode><GPI:mode>cc): Likewise.
+ (<neg_not_op><mode>cc): Likewise.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * config/aarch64/aarch64.md (mov<ALLI>cc): Merge with ...
+ (mov<ALLI>cc): ... this.
+ * config/aarch64/iterators.md(ALLI_GPF): New mode iterator.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * config/aarch64/aarch64.md(mov<GPF>cc): Accept MODE_CC
+ conditions directly; reject QI/HImode conditions.
+
2025-11-14 Kuan-Lin Chen <rufus@andestech.com>
* config/riscv/riscv.cc (andes_25_tune_info): Add prefer-agnostic.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 452b306f6eb..5b6643c3ba2 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20251115
+20251116
diff --git a/gcc/cobol/ChangeLog b/gcc/cobol/ChangeLog
index 95d022dc4bd..28fcde89e33 100644
--- a/gcc/cobol/ChangeLog
+++ b/gcc/cobol/ChangeLog
@@ -1,3 +1,10 @@
+2025-11-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR cobol/122691
+ * lexio.cc (parse_replace_pairs): Replace parsed.stmt.p with
+ parsed.stmt.size() ? parsed.stmt.p : "" in the last argument to
+ dbgmsg.
+
2025-11-13 James K. Lowden <jklowden@cobolworx.com>
* cdf.y: Install literals in symbol table.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index c1dee5db6ed..4f333f16d6c 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,36 @@
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * module.cc (trees_out::write_function_def): Check flag consistency.
+ * pt.cc (mark_decl_instantiated): Ignore TREE_ASM_WRITTEN.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * module.cc (module_state::read_config): Add complain parm.
+ (module_state::open_slurp): Split out...
+ (module_state::do_import): ...from here.
+ (module_state::read_initial): Move begin call to open_slurp.
+ (module_state::check_importable): New.
+ (maybe_translate_include): Call it.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * module.cc (transfer_defining_module): Dereference
+ pointer into hash_map before possible insertion.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * name-lookup.cc (do_nonmember_using_decl): Handle hidden better.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * decl.cc (grokfndecl): Set DECL_CHAIN of a friend f<>.
+ * module.cc (trees_out::get_merge_kind): Give it MK_local_friend.
+ (trees_out::decl_container): Its container is the befriender.
+ (trees_out::key_mergeable): Expand comment.
+ * cp-tree.h (decl_specialization_friend_p): New.
+ * friend.cc (do_friend): Use it.
+ * pt.cc (tsubst_friend_function): Likewise.
+
2025-11-13 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/122551
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 9c07729e286..8c72bbdcd01 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,26 @@
+2025-11-15 Jakub Jelinek <jakub@redhat.com>
+
+ * c-c++-common/asan/asan-stack-small.c (pa, pb, pc): Make these
+ vars volatile.
+ (uintptr_t): New typedef.
+ (main): Use access of b using pa pointer with offset depending on
+ how exactly the 3 variables are laid out in the frame.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/modules/using-33_a.C: New test.
+ * g++.dg/modules/using-33_b.C: New test.
+
+2025-11-15 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/modules/friend-11_a.C: New test.
+ * g++.dg/modules/friend-11_b.C: New test.
+
+2025-11-15 Karl Meakin <karl.meakin@arm.com>
+
+ * gcc.target/aarch64/cmpbr-4.c: New test.
+ * gcc.target/aarch64/cmpbr-5.c: New test.
+
2025-11-14 Jeff Law <jlaw@ventanamicro.com>
* gcc.target/riscv/rvv/vsetvl/avl_single-37.c: Drop unnecessary output
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4dc7f74dd85..3a165a3f3f2 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,13 @@
+2025-11-15 Jonathan Wakely <jwakely@redhat.com>
+
+ * include/bits/atomic_base.h: Tweak grammar of static assert
+ messages for unsupported atomic wait on volatile.
+
+2025-11-15 Jonathan Wakely <jwakely@redhat.com>
+
+ * src/c++20/atomic.cc (__wait_impl): Fix outdated comment.
+ (__wait_until_impl): Simplify return statements.
+
2025-11-14 Tom Tromey <tromey@adacore.com>
* python/libstdcxx/v6/printers.py (StdVectorPrinter._bounds):