]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 10 Aug 2025 00:18:41 +0000 (00:18 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 10 Aug 2025 00:18:41 +0000 (00:18 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog

index 072891846c508e36b33c677048beb4886fe7b170..535eb2464c3c8c7c2c88b17991c5fa115710af14 100644 (file)
@@ -1,3 +1,69 @@
+2025-08-09  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/darwin.cc (darwin_encode_section_info): Do not
+       make anchored symbols linker-visible.
+       (darwin_use_anchors_for_symbol_p): Disallow anchoring on
+       symbols that must be linker-visible (or external), even
+       if the definitions are in this TU.
+
+2025-08-09  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * config/darwin.h (ASM_GENERATE_INTERNAL_LABEL): New
+       entry for LANCHOR.
+
+2025-08-09  David Malcolm  <dmalcolm@redhat.com>
+
+       * diagnostics/context.cc (context::dump): Bulletproof against
+       m_reference_printer being null.
+       * diagnostics/dumping.cc (emit_field<const char *>): Replace
+       with...
+       (emit_string_field): ...this.
+       (emit_field<char *>): Eliminate.
+       (emit_field<bool>): Replace with...
+       (emit_bool_field): ...this.
+       (emit_field<size_t>): Replace with...
+       (emit_size_t_field): ...this, and use HOST_SIZE_T_PRINT_DEC rather
+       than %zi in fprintf call.
+       (emit_field<int>): Replace with...
+       (emit_int_field): ...this.
+       (emit_field<unsigned>): Replace with...
+       (emit_unsigned_field): ...this.
+       * diagnostics/dumping.h (emit_field): Replace this template decl
+       with...
+       (emit_string_field): ...this,
+       (emit_bool_field): ...this,
+       (emit_size_t_field): ...this,
+       (emit_int_field): ...this,
+       (emit_unsigned_field): ... and this.
+       (DIAGNOSTICS_DUMPING_EMIT_FIELD): Rename to...
+       (DIAGNOSTICS_DUMPING_EMIT_BOOL_FIELD): ...this and update for
+       above change.
+       * diagnostics/file-cache.cc (file_cache_slot::dump): Replace
+       emit_field calls with calls that explicitly state the type.  Fix
+       type of dump of m_missing_trailing_newline to use bool.
+       (file_cache_slot::dump): Use HOST_SIZE_T_PRINT_DEC rather than
+       %zi in fprintf call.
+       * diagnostics/html-sink.cc (html_generation_options::dump): Update
+       for macro renaming.
+       * diagnostics/sarif-sink.cc
+       (sarif_serialization_format_json::dump): Likewise.
+       (sarif_generation_options::dump): Likewise, and for function
+       renaming.
+       * diagnostics/text-sink.cc (text_sink::dump): Update for macro
+       renaming.
+       * libgdiagnostics.cc (diagnostic_manager_debug_dump_file): Use
+       HOST_SIZE_T_PRINT_DEC rather than %zi in fprintf call.
+       * pretty-print.cc: Include "diagnostics/dumping.h".
+       (pp_formatted_chunks::dump): Use it.
+       (get_url_format_as_string): New.
+       (pretty_printer::dump): Use diagnostics::dumping.  Bulletproof
+       against m_buffer being null.
+
+2025-08-09  Takayuki 'January June' Suwa  <jjsuwa_sys3175@yahoo.co.jp>
+
+       * config/xtensa/constraints.md (T):
+       Change define_memory_constraint to define_special_memory_constraint.
+
 2025-08-08  Andrew Pinski  <quic_apinski@quicinc.com>
 
        PR tree-optimization/120599
index db3c83932b6fa0e786592ed853b67b7df505fe27..c740198fdd21ca8f7461c413b12bcdeb80a57c1b 100644 (file)
@@ -1 +1 @@
-20250809
+20250810
index d7f90eaf6b7311d154af8381047d15d6c544bbde..c2033560b0b31bed5efd3db7df2501367355000c 100644 (file)
@@ -1,3 +1,18 @@
+2025-08-09  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/121182
+       * decl.cc (match_generic_stmt): New function based on original
+       gfc_match_generic but feeding namespace rather than typebound
+       generics.
+       (match_typebound_generic): Renamed original gfc_match_generic.
+       (gfc_match_generic): New function that selects between type
+       bound generic and other generic statements and calls one of the
+       above two functions as appropriate.
+       * parse.cc (decode_specification_statement): Allow generic
+       statements.
+       (parse_spec): Accept a generic statement in a specification
+       block.
+
 2025-08-05  Mikael Morin  <morin-mikael@orange.fr>
 
        * trans-stmt.cc (trans_associate_var): Remove overwrite of
index cd616c44da1a06886c9198980542c40f6c93e22a..b3ddaf1a7473d1997c9e07edc755752c5db74004 100644 (file)
@@ -1,3 +1,28 @@
+2025-08-09  H.J. Lu  <hjl.tools@gmail.com>
+
+       PR testsuite/121205
+       * gcc.target/i386/asm-hard-reg-2.c (z): Use long long for -m32
+       to trigger RA error.
+
+2025-08-09  Dimitar Dimitrov  <dimitar@dinux.eu>
+
+       * g++.dg/modules/class-11_a.H: Skip test for effective
+       default_packed targets.
+       * g++.dg/modules/class-11_b.C: Ditto.
+
+2025-08-09  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/121182
+       * gfortran.dg/generic_stmt_1.f90: New test.
+       * gfortran.dg/generic_stmt_2.f90: New test.
+       * gfortran.dg/generic_stmt_3.f90: New test.
+       * gfortran.dg/generic_stmt_4.f90: New test.
+
+2025-08-09  Dimitar Dimitrov  <dimitar@dinux.eu>
+
+       * gcc.dg/torture/hardbool-ai.c: Require target that supports
+       atomic operations on int types.
+
 2025-08-08  Andrew Pinski  <quic_apinski@quicinc.com>
 
        PR tree-optimization/120599