This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/gcc.
from 3857edb5d32 analyzer: new implementation of shortest feasible path [PR96374] adds 7ad5a72c8bc compiler: create temporaries for heap variables adds 48ff383f0d9 Daily bump. adds a7ac3e92ecf gcc-changelog: allow ChangeLog deletion in a commit adds 0df3eb2622d analyzer: document new param adds 425afe1f0c9 c++: Fix up calls to immediate functions returning referenc [...] adds 3bb345c9313 i386: Hopefully last set of -mavx512vl -mno-avx512bw fixes [...] adds a6e9633ccb5 Fortran: Fix libgfortran I/O race with newunit_free [PR99529] adds 0b5437510c1 Fortran/OpenMP: Fix use_device_{ptr,addr} with assumed-size [...] adds d0655763483 Fortran/OpenMP: Accept implicit-save DATA vars for threadpr [...] adds d8b84e2771f Fix memory constraint bug in SPARC back-end adds 6e885ad3287 c++: ICE with using-decl [PR 99238] adds 6da2762a3b1 Daily bump. adds ff4816dff0d sim: drop dep on configure-gdb adds 8c2cf7f4f7e MAINTAINERS: Add myself for write after approval adds 3972574f11e misc/cgo/testcarchive: don't use == for string equality in C code adds bbdf59fdbc2 match.pd: Don't optimize vector X + (X << C) -> X * (1 + (1 [...] adds 7987beec679 Fortran: Fix for class defined operators [PR99125]. new 77643ac4bbd PR tree-optimization/99489 - ICE calling strncat after strcat
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: ChangeLog | 9 + MAINTAINERS | 1 + Makefile.def | 1 - Makefile.in | 1 - contrib/ChangeLog | 9 + contrib/gcc-changelog/git_commit.py | 3 +- contrib/gcc-changelog/git_email.py | 2 +- contrib/gcc-changelog/setup.cfg | 3 + contrib/gcc-changelog/test_email.py | 4 + contrib/gcc-changelog/test_patches.txt | 30 +++ gcc/ChangeLog | 149 +++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 56 ++++ gcc/builtins.c | 2 +- gcc/config/i386/constraints.md | 6 + gcc/config/i386/mmx.md | 179 +++++++------ gcc/config/i386/sse.md | 292 ++++++++++----------- gcc/config/sparc/constraints.md | 9 +- gcc/config/sparc/sparc.c | 9 +- gcc/config/sparc/sparc.md | 12 +- gcc/config/sparc/sync.md | 6 +- gcc/cp/ChangeLog | 45 ++++ gcc/cp/call.c | 4 + gcc/cp/module.cc | 5 + gcc/cp/name-lookup.c | 79 +++--- gcc/doc/invoke.texi | 4 + gcc/fortran/ChangeLog | 6 + gcc/fortran/resolve.c | 10 +- gcc/fortran/trans-array.c | 10 +- gcc/fortran/trans-expr.c | 2 +- gcc/gimplify.c | 2 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 136 ++++++---- gcc/go/gofrontend/expressions.h | 5 + gcc/go/gofrontend/gogo.cc | 2 +- gcc/go/gofrontend/statements.cc | 6 +- gcc/go/gofrontend/wb.cc | 4 +- gcc/match.pd | 10 +- gcc/testsuite/ChangeLog | 78 ++++++ gcc/testsuite/g++.dg/cpp2a/consteval19.C | 6 + gcc/testsuite/g++.dg/modules/pr99238.h | 1 + gcc/testsuite/g++.dg/modules/pr99238_a.H | 4 + gcc/testsuite/g++.dg/modules/pr99238_b.H | 8 + gcc/testsuite/gcc.dg/Wstringop-truncation-9.c | 41 +++ gcc/testsuite/gcc.dg/gomp/pr99544.c | 13 + gcc/testsuite/gcc.target/i386/avx512vl-pr99321-2.c | 94 +++++++ .../gfortran.dg/alloc_deferred_comp_1.f90 | 18 ++ gcc/testsuite/gfortran.dg/gomp/threadprivate-1.f90 | 11 + libgfortran/ChangeLog | 9 + libgfortran/io/transfer.c | 32 ++- libgfortran/io/unit.c | 1 - libgo/misc/cgo/testcarchive/testdata/main_unix.c | 2 +- libgomp/ChangeLog | 5 + .../testsuite/libgomp.fortran/use_device_ptr-3.f90 | 91 +++++++ libstdc++-v3/ChangeLog | 68 +++++ 55 files changed, 1212 insertions(+), 387 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/consteval19.C create mode 100644 gcc/testsuite/g++.dg/modules/pr99238.h create mode 100644 gcc/testsuite/g++.dg/modules/pr99238_a.H create mode 100644 gcc/testsuite/g++.dg/modules/pr99238_b.H create mode 100644 gcc/testsuite/gcc.dg/Wstringop-truncation-9.c create mode 100644 gcc/testsuite/gcc.dg/gomp/pr99544.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512vl-pr99321-2.c create mode 100644 gcc/testsuite/gfortran.dg/alloc_deferred_comp_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/threadprivate-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/use_device_ptr-3.f90