This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-bootstrap_O3 in repository toolchain/ci/gcc.
from 621ea10ca06 libstdc++: Implement LWG 3403 for std::ranges::ssize adds 600f90cbbbf Daily bump. adds 549d7f4310f Fix split conditions in H8/300 port adds f31729d794c * MAINTAINERS: Add myself to DCO section with both email a [...] adds 96963713f6a libstdc++: Fix return type of ranges::ssize for 128-bit int [...] adds d514626ee25 Fortran: Fix some issues with pointers to character. adds 9147affc04e m68k: Update unexpected empty split condition adds bdce6760c20 mips: Update unexpected empty split condition adds 8afd2e82290 or1k: Update unexpected empty split condition adds 10f36fe50cb sparc: Update unexpected empty split condition adds 081c9dfb67a sh: Update unexpected empty split condition adds 416904a2b60 Fix maintainers-verify.sh adds a0864ce8662 Use libiberty snprintf and vsnprintf on hppa*-*-hpux*. adds 28c62475050 Daily bump. adds a589877a003 Fix thinko in new warning on type punning for storage order [...] adds 4e65bf5ace0 docs: remove extra character. adds 0bc0e6173f5 genhooks: remove dead code adds fcbbf786aeb docs: Add missing @headitem for tables. adds 7fa4db39b6b openmp: Call c_omp_adjust_map_clauses even for combined tar [...] adds cb4b99be48a openmp: Add testcase for scan directive with nested functions new 09bf5279e87 i386: Clean up constraints.md new 03d921abe60 aix: Use assemble_name to output BSS section name. new fed94fc9e70 Reimplement LEAF_REG_REMAP macro for the SPARC
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 9 + MAINTAINERS | 4 + gcc/ChangeLog | 119 ++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 10 + gcc/c/ChangeLog | 5 + gcc/c/c-decl.c | 19 +- gcc/c/c-parser.c | 1 + gcc/c/c-typeck.c | 23 +- gcc/config/h8300/addsub.md | 16 +- gcc/config/h8300/bitfield.md | 16 +- gcc/config/h8300/combiner.md | 68 +-- gcc/config/h8300/divmod.md | 12 +- gcc/config/h8300/extensions.md | 12 +- gcc/config/h8300/jumpcall.md | 2 +- gcc/config/h8300/logical.md | 2 +- gcc/config/h8300/movepush.md | 22 +- gcc/config/h8300/multiply.md | 12 +- gcc/config/h8300/other.md | 2 +- gcc/config/h8300/shiftrotate.md | 18 +- gcc/config/i386/constraints.md | 15 +- gcc/config/m68k/m68k.md | 6 +- gcc/config/mips/mips.md | 6 +- gcc/config/or1k/or1k.md | 2 +- gcc/config/rs6000/rs6000.c | 10 +- gcc/config/sh/sh.md | 2 +- gcc/config/sparc/sparc-protos.h | 3 +- gcc/config/sparc/sparc.c | 67 ++- gcc/config/sparc/sparc.h | 5 +- gcc/config/sparc/sparc.md | 12 +- gcc/cp/ChangeLog | 19 + gcc/cp/parser.c | 1 + gcc/d/ChangeLog | 11 + gcc/doc/extend.texi | 12 +- gcc/doc/invoke.texi | 4 +- gcc/doc/objc.texi | 6 +- gcc/fortran/ChangeLog | 93 +++ gcc/fortran/trans-array.c | 61 +- gcc/fortran/trans-expr.c | 70 ++- gcc/fortran/trans-intrinsic.c | 1 + gcc/fortran/trans-types.c | 68 ++- gcc/fortran/trans-types.h | 2 +- gcc/fortran/trans.c | 26 +- gcc/fortran/trans.h | 5 + gcc/genhooks.c | 33 +- gcc/testsuite/ChangeLog | 129 ++++ gcc/testsuite/c-c++-common/gomp/pr100902-1.c | 17 + gcc/testsuite/gcc.dg/gomp/scan-1.c | 51 ++ gcc/testsuite/gcc.dg/sso-14.c | 53 ++ gcc/testsuite/gfortran.dg/PR100120.f90 | 198 +++++++ gcc/testsuite/gfortran.dg/character_workout_1.f90 | 689 ++++++++++++++++++++++ gcc/testsuite/gfortran.dg/character_workout_4.f90 | 689 ++++++++++++++++++++++ libgfortran/ChangeLog | 8 + libgfortran/intrinsics/associated.c | 2 +- libgfortran/libgfortran.h | 1 + libiberty/ChangeLog | 7 + libiberty/configure | 42 +- libiberty/configure.ac | 6 + libstdc++-v3/ChangeLog | 71 +++ libstdc++-v3/include/bits/ranges_base.h | 2 +- libstdc++-v3/testsuite/std/ranges/access/ssize.cc | 15 + 61 files changed, 2603 insertions(+), 291 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/pr100902-1.c create mode 100644 gcc/testsuite/gcc.dg/gomp/scan-1.c create mode 100644 gcc/testsuite/gcc.dg/sso-14.c create mode 100644 gcc/testsuite/gfortran.dg/PR100120.f90 create mode 100644 gcc/testsuite/gfortran.dg/character_workout_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/character_workout_4.f90