]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 23 Feb 2026 00:16:26 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 23 Feb 2026 00:16:26 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/ada/ChangeLog
gcc/algol68/ChangeLog
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libcpp/ChangeLog

index 1e5047c69777f5aeb6735a0fe98fa8306292e24c..3c84f906db53750e14d281e9d848ed5b4129c9cd 100644 (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):
index 0e4856e82985bc928601633d2137fea0bdb46c24..d52af3533357e93e8ae2db56b51638a9d61d437a 100644 (file)
@@ -1 +1 @@
-20260222
+20260223
index 78518e07434d31da527d7b2c5c0a9b5ff602d0db..80ec4781483c43720bcd6cd0bb32c015184ff7de 100644 (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
index 29586830e10964c7a9c1c3792ccfd0c22ae0f2a2..a92a4a5b9f19d3621b365a61bc060fe0e35fdd4e 100644 (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
index 0bb0f8c822c50477a5c26f5b44f1747e1b1cd7e9..beb4e3ded105ca21ed99df1c8c5c63e2b5b49b84 100644 (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.
index 8563f50cf078bc9865078456a1235178c70249fe..6334694b510a130b2cf5c760e8d311ce4cc8b74b 100644 (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.
index 1bb7967e98910e1719159e5d6407b3eee80750f0..5664d253d87ab06f44efc870c29f7f2acc08f68b 100644 (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