Daily bump.

This commit is contained in:
GCC Administrator
2026-02-23 00:16:26 +00:00
parent 7bd059e28d
commit 99e06c93be
7 changed files with 103 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
2026-02-22 Roger Sayle <roger@nextmovesoftware.com>
PR c/123716
* tree.cc (tree_nop_conversion_p): Move sanity checks on
inner_type to here...
(tree_nop_conversion): ... from here.
2026-02-22 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/120974
* gcc.cc (join_spec_func): Escape special characters.
2026-02-21 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
* config/xtensa/xtensa.cc (constantsynth_pass1):

View File

@@ -1 +1 @@
20260222
20260223

View File

@@ -1,3 +1,17 @@
2026-02-22 Eric Botcazou <ebotcazou@adacore.com>
PR ada/124192
* doc/gnat_rm/standard_and_implementation_defined_restrictions.rst
(Max_Tasks): Adjust description.
* gnat_rm.texi: Regenerate.
2026-02-22 Eric Botcazou <ebotcazou@adacore.com>
PR ada/124179
* sem_ch9.adb (Analyze_Triggering_Alternative): Use more robust
test for delay and entry call statements and fix thinko in test
for procedure call statements.
2026-02-20 Eric Botcazou <ebotcazou@adacore.com>
* libgnat/s-stposu.adb (Finalize_Pool): Pass a local copy of the

View File

@@ -1,3 +1,8 @@
2026-02-22 Jose E. Marchesi <jemarch@gnu.org>
* a68-low-units.cc (lower_subscript_for_trimmers): Do not crash
with trimmers with implicit lower and upper bounds.
2026-02-21 Jose E. Marchesi <jemarch@gnu.org>
* a68-parser-bottom-up.cc (reduce_formal_holes): Fix error format

View File

@@ -1,3 +1,24 @@
2026-02-22 Jakub Jelinek <jakub@redhat.com>
PR c++/124173
* pt.cc (convert_nontype_argument): For C++11/C++14 handle
NULLPTR_TYPE_P non-type arguments like TYPE_PTR_P.
2026-02-22 Jakub Jelinek <jakub@redhat.com>
PR c++/124184
* parser.cc (cp_perform_range_for_lookup): If tf_error is
missing, call finish_call_expr after perform_koenig_lookup
calls immediately with tf_any_viable instead of twice, once
with tf_none and then with tf_any_viable.
* pt.cc (finish_expansion_stmt): Remove unneeded parens.
2026-02-22 Valentyn Yukhymenko <valentin.yukhymenko@gmail.com>
PR c++/123642
* typeck.cc (finish_class_member_access_expr): Change context lookup
to handle anon union members.
2026-02-19 Marek Polacek <polacek@redhat.com>
* metafns.gperf: Define METAFN_KIND_ARG.

View File

@@ -1,3 +1,41 @@
2026-02-22 Roger Sayle <roger@nextmovesoftware.com>
PR c/123716
* gcc.dg/pr123716.c: New test case.
2026-02-22 Jose E. Marchesi <jemarch@gnu.org>
* algol68/execute/trimmer-12.a68: New test.
2026-02-22 Jakub Jelinek <jakub@redhat.com>
PR c++/124173
* g++.dg/cpp0x/pr124173.C: New test.
2026-02-22 Jakub Jelinek <jakub@redhat.com>
PR c++/124184
* g++.dg/cpp26/expansion-stmt31.C: New test.
2026-02-22 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/124153
* g++.dg/modules/cpp-22.C: New test.
2026-02-22 Valentyn Yukhymenko <valentin.yukhymenko@gmail.com>
PR c++/123642
* g++.dg/reflect/member4.C: Remove expected error.
* g++.dg/reflect/anon4.C: New test based on original bug report.
2026-02-22 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/asynch2.adb: New test.
2026-02-22 Jose E. Marchesi <jemarch@gnu.org>
* algol68/execute/trimmer-11.a68: New test.
2026-02-21 Jose E. Marchesi <jemarch@gnu.org>
* algol68/compile/warning-hidding-4.a68: Mention bitspack.

View File

@@ -1,3 +1,15 @@
2026-02-22 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/124153
* lex.cc (cpp_maybe_module_directive): Set in_deferred_pragma
and eol when we see an unexpected CPP_PRAGMA_EOL.
2026-02-22 Nathaniel Shead <nathanieloshead@gmail.com>
PR c++/119756
* files.cc (search_path_head): Also treat empty string (stdin)
as an absolute path.
2026-01-30 Jakub Jelinek <jakub@redhat.com>
PR preprocessor/123273