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

index 58542d099b943e8c2bc4ee67868ed073343b1df5..cffe20394d345aefdfb332374d5b1c5ae3785ecc 100644 (file)
@@ -1,3 +1,11 @@
+2026-02-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       PR libstdc++/113450
+       PR libstdc++/123176
+       * inclhack.def (solaris_int8_t): New fix.
+       * fixincl.x: Regenerate.
+       * tests/base/sys/int_types.h: New file.
+
 2026-01-09  Ben Boeckel  <ben.boeckel@kitware.com>
 
        * README: Replace gcc-bugs@ with bug reporting link.
index cabfd68092a2409976c00f53fbd643b22644e74f..9e7c66dab2595a76403769d1d4e6934b1c499b4d 100644 (file)
@@ -1,3 +1,54 @@
+2026-02-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       PR libstdc++/113450
+       PR libstdc++/123176
+       * config/sol2.h (INT8_TYPE): Change to signed char.
+       (INT_LEAST8_TYPE): Likewise.
+       (INT_FAST8_TYPE): Likewise.
+
+2026-02-15  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * json.cc (pointer::token::print): Cast the value to pp_scalar
+       with (fmt_size_t).
+
+2026-02-15  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa-devirt.cc (ipa_devirt): Improve statistics for multi-target
+       devirtualization; do not simple-call devirtualize already devirtualized calls.
+
+2026-02-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * configure.ac <sparc*-*-*> (gcc_cv_as_sparc_fmaf): Remove.
+       (gcc_cv_as_sparc_sparc4): Remove.
+       (gcc_cv_as_sparc_sparc): Remove.
+       (gcc_cv_as_sparc_sparc6): Remove.
+       * configure: Regenerate.
+       * config.in: Regenerate.
+       * config/sparc/sparc.h (AS_NIAGARA3_FLAG) Remove.  Replace uses by
+       definition.
+       (AS_NIAGARA4_FLAG): Likewise.
+       (AS_NIAGARA7_FLAG): Likewise.
+       (AS_M8_FLAG): Likewise.
+       * config/sparc/sol2.h [!HAVE_AS_SPARC4]: Remove.
+       (AS_SPARC32_FLAG): Remove.
+       (AS_SPARC64_FLAG): Remove.
+       (AS_NIAGARA3_FLAG) Replace uses by definition.
+       (AS_NIAGARA4_FLAG): Likewise.
+       (AS_NIAGARA7_FLAG): Likewise.
+       (AS_M8_FLAG): Likewise.
+       * config/sparc/sparc.cc (sparc_option_override):
+       [!HAVE_AS_FMAF_HPC_VIS3]: Remove.
+       [!HAVE_AS_SPARC4]: Likewise.
+       [!HAVE_AS_SPARC5_VIS4]: Likewise.
+       [!HAVE_AS_SPARC6]: Likewise.
+
+2026-02-15  Andrew Pinski  <andrew.pinski@oss.qualcomm.com>
+
+       PR tree-optimization/124099
+       * tree-ssa-forwprop.cc (optimize_agr_copyprop_return): Don't do anything
+       if the return is already result decl or a deference of result decl.
+       Also reject non local var decls.
+
 2026-02-14  Jakub Jelinek  <jakub@redhat.com>
 
        PR cobol/122839
index 4820ef6632aa7027d0b7e0b32996bd9bacde53ee..4fe04e093b44c69bd2a0a488ba5a6c152036abf1 100644 (file)
@@ -1 +1 @@
-20260215
+20260216
index b7a8bf6e98a89d2c0fa698230d3ef7ba7dcc81a6..d828ee69a341cf9f4bfecda8ece97380a250c175 100644 (file)
@@ -1,3 +1,9 @@
+2026-02-15  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/121500
+       * cp-gimplify.cc (cp_genericize_r): Walk DECL_VALUE_EXPR within
+       an xobj lambda.
+
 2026-02-13  Marek Polacek  <polacek@redhat.com>
 
        * cp-tree.h (inform_tree_category): Declare.
index 5c24f45016a11b1583d32a31b0a5ad5e44b6fe2d..4f682e0b96b0097114c25363675cf45b7b7dac0a 100644 (file)
@@ -1,3 +1,17 @@
+2026-02-15  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/108663
+       * decl.cc (gfc_get_pdt_instance): Use PDT_PREFIX and
+       PDT_PREFIX_LEN.
+       * gfortran.h : Define PDT_PREFIX and PDT_PREFIX_LEN. Note that
+       PDT_PREFIX must have at least two upper case letters.
+       * module.cc (read_module): Use PDT_PREFIX and PDT_PREFIX_LEN.
+       * resolve.cc (resolve_typebound_procedure): Both pdt_template
+       and pdt_type resolve_bindings_derived dummies should be tested
+       for LEN type parameters being assumed.
+       * symbol.cc (gfc_pdt_is_instance_of): Update preceding comment
+       and use PDT_PREFIX_LEN.
+
 2026-02-14  Christopher Albert  <albert@tugraz.at>
            Harald Anlauf  <anlauf@gcc.gnu.org>
 
index 1b15d128d1b51d89a34bc5b74e1963176940134d..2b194b7f10e1456c505176af77b6a594945c4f09 100644 (file)
@@ -1,3 +1,26 @@
+2026-02-15  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/121500
+       * g++.dg/cpp23/explicit-obj-lambda20.C: New test.
+
+2026-02-15  Andrew Pinski  <andrew.pinski@oss.qualcomm.com>
+
+       PR tree-optimization/124099
+       * gcc.dg/torture/tls-return-1.c: New test.
+
+2026-02-15  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/108663
+       * gfortran.dg/pdt_15.f03: Modify tree dump test for new prefix.
+       * gfortran.dg/pdt_71.f03: Ditto.
+       * gfortran.dg/pdt_79.f03: Ditto.
+       * gfortran.dg/pdt_84.f03: New test.
+
+2026-02-15  Andrew Pinski  <andrew.pinski@oss.qualcomm.com>
+
+       * c-c++-common/torture/pr124086-1.c: Only enable
+       for power of 2 long double.
+
 2026-02-14  Kalvis Duckmanton  <kalvisd@gmail.com>
 
        PR target/112400