From: GCC Administrator Date: Mon, 16 Feb 2026 00:16:25 +0000 (+0000) Subject: Daily bump. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64c9fcfa70edeba5e1889a6cd02be64abe751e04;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog index 58542d099b9..cffe20394d3 100644 --- a/fixincludes/ChangeLog +++ b/fixincludes/ChangeLog @@ -1,3 +1,11 @@ +2026-02-15 Rainer Orth + + 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 * README: Replace gcc-bugs@ with bug reporting link. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cabfd68092a..9e7c66dab25 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,54 @@ +2026-02-15 Rainer Orth + + 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 + + * json.cc (pointer::token::print): Cast the value to pp_scalar + with (fmt_size_t). + +2026-02-15 Jan Hubicka + + * ipa-devirt.cc (ipa_devirt): Improve statistics for multi-target + devirtualization; do not simple-call devirtualize already devirtualized calls. + +2026-02-15 Rainer Orth + + * configure.ac (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 + + 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 PR cobol/122839 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 4820ef6632a..4fe04e093b4 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20260215 +20260216 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b7a8bf6e98a..d828ee69a34 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2026-02-15 Patrick Palka + + PR c++/121500 + * cp-gimplify.cc (cp_genericize_r): Walk DECL_VALUE_EXPR within + an xobj lambda. + 2026-02-13 Marek Polacek * cp-tree.h (inform_tree_category): Declare. diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 5c24f45016a..4f682e0b96b 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,17 @@ +2026-02-15 Paul Thomas + + 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 Harald Anlauf diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1b15d128d1b..2b194b7f10e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,26 @@ +2026-02-15 Patrick Palka + + PR c++/121500 + * g++.dg/cpp23/explicit-obj-lambda20.C: New test. + +2026-02-15 Andrew Pinski + + PR tree-optimization/124099 + * gcc.dg/torture/tls-return-1.c: New test. + +2026-02-15 Paul Thomas + + 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 + + * c-c++-common/torture/pr124086-1.c: Only enable + for power of 2 long double. + 2026-02-14 Kalvis Duckmanton PR target/112400