https://gcc.gnu.org/g:fb66105b88c3c5443ccc4eb864941d3c9411a07d

commit r13-8544-gfb66105b88c3c5443ccc4eb864941d3c9411a07d
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Mon Apr 1 00:20:43 2024 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 107 ++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |   2 +-
 gcc/fortran/ChangeLog   |  14 +++++++
 gcc/objc/ChangeLog      |  36 ++++++++++++++++
 gcc/testsuite/ChangeLog |  34 +++++++++++++++
 5 files changed, 192 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 72647ae535d..772cbfa8245 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,110 @@
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-28  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config/darwin.cc (darwin_build_constant_cfstring): Prevent over-
+       alignment of CFString constants by setting DECL_USER_ALIGN.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config/darwin.cc (darwin_objc1_section): Use the correct
+       meta-data version for constant strings.
+       (machopic_select_section): Assert if we fail to handle CFString
+       sections as Obejctive-C meta-data or drectly.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       PR target/105522
+       * config/darwin.cc (machopic_select_section): Handle C and C++
+       CFStrings.
+       (darwin_rename_builtins): Move this out of the CFString code.
+       (darwin_libc_has_function): Likewise.
+       (darwin_build_constant_cfstring): Create an anonymous var to
+       hold each CFString.
+       * config/darwin.h (ASM_OUTPUT_LABELREF): Handle constant
+       CFstrings.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-10-26  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config/darwin.h
+       (darwin_label_is_anonymous_local_objc_name): Make metadata names
+       linker-visibile for GNU objective C.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-10-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config.in: Regenerate.
+       * config/darwin.cc (darwin_file_start): Add assembler directives
+       for the target OS version, where these are supported by the
+       assembler.
+       (darwin_override_options): Check for building >= macOS 10.14.
+       * configure: Regenerate.
+       * configure.ac: Check for assembler support of .build_version
+       directives.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-09-27  Iain Sandoe  <i...@sandoe.co.uk>
+
+       PR target/111610
+       * configure: Regenerate.
+       * configure.ac: Rename the missing dsymutil case to "DET_UNKNOWN".
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-09-04  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config/darwin-sections.def (static_init_section): Add the
+       __TEXT,__StaticInit section.
+       * config/darwin.cc (darwin_function_section): Use the static init
+       section for global initializers, to match other platform toolchains.
+       Place unlikely executed global init code into the standard cold
+       section.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-09-04  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * config/darwin-sections.def (darwin_exception_section): Move to
+       the __TEXT segment.
+       * config/darwin.cc (darwin_emit_except_table_label): Align before
+       the exception table label.
+       * config/darwin.h (ASM_PREFERRED_EH_DATA_FORMAT): Use indirect PC-
+       relative 4byte relocs.
+
+2024-03-31  Rainer Orth  <r...@cebitec.uni-bielefeld.de>
+
+       Backported from master:
+       2023-08-17  Rainer Orth  <r...@cebitec.uni-bielefeld.de>
+
+       * configure.ac (gcc_cv_ld64_version): Allow for dyld in ld -v
+       output.
+       * configure: Regenerate.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-09-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * configure: Regenerate.
+       * configure.ac: Handle explict disable of stdlib option, set
+       defaults for Darwin.
+
 2024-03-30  Xi Ruoyao  <xry...@xry111.site>
 
        Backported from master:
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index bba4e6d66bc..6a6c7bc8980 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240331
+20240401
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 728a97af0c1..308c830e965 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,17 @@
+2024-03-31  Mikael Morin  <mik...@gcc.gnu.org>
+
+       Backported from master:
+       2024-03-22  Mikael Morin  <mik...@gcc.gnu.org>
+
+       PR fortran/107426
+       * gfortran.h (gfc_save_module_list, gfc_restore_old_module_list):
+       New declarations.
+       * module.cc (old_module_list_tail): New global variable.
+       (gfc_save_module_list, gfc_restore_old_module_list): New functions.
+       (gfc_use_modules): Set module_list and old_module_list_tail.
+       * parse.cc (next_statement): Save module_list before doing any work.
+       (reject_statement): Restore module_list to its saved value.
+
 2024-03-29  Harald Anlauf  <anl...@gmx.de>
 
        Backported from master:
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog
index ebfd413a60c..723e55bd6e5 100644
--- a/gcc/objc/ChangeLog
+++ b/gcc/objc/ChangeLog
@@ -1,3 +1,39 @@
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-28  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * objc-next-runtime-abi-02.cc (build_v2_address_table): Prevent
+       over-alignment of Objective-C metadata by setting DECL_USER_ALIGN
+       on relevant variables.
+       (build_v2_protocol_list_address_table): Likewise.
+       (generate_v2_protocol_list): Likewise.
+       (generate_v2_meth_descriptor_table): Likewise.
+       (generate_v2_meth_type_list): Likewise.
+       (generate_v2_property_table): Likewise.
+       (generate_v2_dispatch_table): Likewise.
+       (generate_v2_ivars_list): Likewise.
+       (generate_v2_class_structs): Likewise.
+       (build_ehtype): Likewise.
+       * objc-runtime-shared-support.cc (generate_strings): Likewise.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * objc-act.cc (objc_init): Initialize interface and class
+       name hash maps before the preprocessor uses them.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-12  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * objc-next-runtime-abi-02.cc
+       (build_v2_objc_method_fixup_call): Early exit for cases
+       where the sender or receiver are known to be in error.
+
 2023-07-27  Release Manager
 
        * GCC 13.2.0 released.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 9c399997949..6348f6ce8c3 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,37 @@
+2024-03-31  Mikael Morin  <mik...@gcc.gnu.org>
+
+       Backported from master:
+       2024-03-22  Mikael Morin  <mik...@gcc.gnu.org>
+
+       PR fortran/107426
+       * gfortran.dg/pr89943_3.f90: Update error pattern.
+       * gfortran.dg/pr89943_4.f90: Likewise.
+       * gfortran.dg/use_31.f90: New test.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-28  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * obj-c++.dg/encode-10.mm: Remove unneeded '-lobjc' option addition.
+       * obj-c++.dg/encode-9.mm: Likewise.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2023-06-23  Iain Sandoe  <i...@sandoe.co.uk>
+
+       * objc-obj-c++-shared/GNUStep/Foundation/NSObjCRuntime.h: Make
+       this header use pragma system_header.
+
+2024-03-31  Iain Sandoe  <i...@sandoe.co.uk>
+
+       Backported from master:
+       2024-01-18  Iain Sandoe  <i...@sandoe.co.uk>
+
+       PR target/105522
+       * gcc.dg/pr105522.c: New file.
+
 2024-03-30  Jakub Jelinek  <ja...@redhat.com>
 
        Backported from master:

Reply via email to