This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-stable-defconfig in repository toolchain/ci/gcc.
from 9df0ff5f219 coroutines: Fix unused value found by static analysis. adds bf5fbbbd8c9 PR fortran/95090 - ICE: identifier overflow adds dd38c765a04 PR fortran/95373 - ICE in build_reference_type, at tree.c:7942 adds 9f2e635defb Ability to build the GNAT runtime with project files adds d5cdcd5cf2b RISC-V: Optimize si to di zero-extend followed by left shift. adds 945b53ccf6a Daily bump. adds 6dda8608443 Disable brabc/brabs patterns as their length computation is [...] adds dc8c02ca1cd expr: Fix fallout from optimize store_expr from STRING_CST [...] adds 811f902b764 Finalization depends on the expression, not on the component. adds 1d2d5afc80f contrib: Add pru-elf to config-list.mk adds 05430b9b6a7 Cleanup indexable tree streaming. adds c25d0fa4d76 Fix execute/20071219-1.c regression on H8 due to loss of RE [...] new 3cf2a9e047d coroutines: Remove up some unused values.
The 1 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: contrib/config-list.mk | 1 + gcc/ChangeLog | 11 ++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 15 ++ gcc/ada/Makefile.rtl | 33 +++- .../doc/gnat_ugn/the_gnat_compilation_model.rst | 18 +- gcc/ada/gcc-interface/Makefile.in | 2 +- gcc/ada/libgnarl/libgnarl.gpr | 28 +++ gcc/ada/libgnat/libada.gpr | 77 ++++++++ gcc/ada/libgnat/libgnat.gpr | 69 +++++++ gcc/ada/libgnat/libgnat_common.gpr | 19 ++ gcc/ada/libgnat/system-mingw.ads | 5 - gcc/ada/tb-gcc.c | 125 ------------ gcc/ada/tracebak.c | 96 +++++++++- gcc/config/h8300/jumpcall.md | 14 +- gcc/config/riscv/riscv.md | 22 +++ gcc/cp/ChangeLog | 11 ++ gcc/cp/coroutines.cc | 28 ++- gcc/expr.c | 5 + gcc/fortran/ChangeLog | 12 ++ gcc/fortran/class.c | 14 +- gcc/fortran/gfortran.h | 4 +- gcc/fortran/primary.c | 43 +++-- gcc/lra.c | 28 --- gcc/lto-section-out.c | 105 ----------- gcc/lto-streamer-out.c | 209 +++++++++++++-------- gcc/lto-streamer.h | 19 +- gcc/recog.c | 7 + gcc/reload1.c | 26 --- gcc/rtl.h | 1 + gcc/rtlanal.c | 26 +++ gcc/testsuite/ChangeLog | 15 ++ gcc/testsuite/gcc.dg/pr95052.c | 12 ++ gcc/testsuite/gcc.target/riscv/zero-extend-5.c | 8 + gcc/testsuite/gfortran.dg/finalize_28.f90 | 2 +- gcc/testsuite/gfortran.dg/finalize_33.f90 | 2 +- gcc/testsuite/gfortran.dg/finalize_34.f90 | 2 +- gcc/testsuite/gfortran.dg/finalize_35.f90 | 48 +++++ gcc/testsuite/gfortran.dg/pr95373_1.f90 | 4 +- gcc/testsuite/gfortran.dg/pr95373_2.f90 | 2 +- libgomp/ChangeLog | 8 + 41 files changed, 732 insertions(+), 446 deletions(-) create mode 100644 gcc/ada/libgnarl/libgnarl.gpr create mode 100644 gcc/ada/libgnat/libada.gpr create mode 100644 gcc/ada/libgnat/libgnat.gpr create mode 100644 gcc/ada/libgnat/libgnat_common.gpr delete mode 100644 gcc/ada/tb-gcc.c create mode 100644 gcc/testsuite/gcc.dg/pr95052.c create mode 100644 gcc/testsuite/gcc.target/riscv/zero-extend-5.c create mode 100644 gcc/testsuite/gfortran.dg/finalize_35.f90