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-mainline-allyesconfig in repository toolchain/ci/gcc.
from c72a1b6f8b2 Daily bump. adds f84aded848f c++: Fix crash in gimplifier with paren init of aggregates [...] adds b696698767b libstdc++: Make string_view::copy usable in constant expres [...] adds e83714f65d1 lra: Stop eh_return data regs being incorrectly marked live [...] adds 130f703da0c skip gcc.target/arm/div64-unwinding.c on vxworks_kernel targets adds d42a2e465d8 Fix fortran/93686 -- ICE matching data statements with deri [...] adds 6a38c697c6c Update cpplib eo.po. adds e0fd9ce257c Update gcc sv.po. adds 8662d059343 cselib: Fix endless cselib loop on (plus:P (reg) (const_int 0)) adds 5ff06d762a8 libatomic/test: Fix compilation for build sysroot adds 749bd22ddc5 libgomp/test: Remove a build sysroot fix regression new 52fa80f853c libgo: update to almost the 1.14.2 release new 93a49d2d229 Daily bump.
The 2 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: gcc/ChangeLog | 11 + gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 6 + gcc/cp/init.c | 2 + gcc/cselib.c | 18 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/decl.c | 4 + gcc/go/gofrontend/MERGE | 2 +- gcc/lra-lives.c | 6 + gcc/po/ChangeLog | 4 + gcc/po/sv.po | 407 ++++++++------------- gcc/testsuite/ChangeLog | 17 + gcc/testsuite/g++.dg/cpp2a/paren-init22.C | 15 + gcc/testsuite/gcc.target/arm/div64-unwinding.c | 1 + gcc/testsuite/gfortran.dg/pr93686_1.f90 | 10 + gcc/testsuite/gfortran.dg/pr93686_2.f90 | 10 + gcc/testsuite/gfortran.dg/pr93686_3.f90 | 9 + gcc/testsuite/gfortran.dg/pr93686_4.f90 | 8 + libatomic/ChangeLog | 10 + libatomic/configure | 3 + libatomic/configure.ac | 1 + libatomic/testsuite/Makefile.am | 2 + libatomic/testsuite/Makefile.in | 5 +- libatomic/testsuite/libatomic-site-extra.exp.in | 1 + libcpp/po/ChangeLog | 4 + libcpp/po/eo.po | 81 ++-- libgo/MERGE | 2 +- libgo/VERSION | 2 +- libgo/go/cmd/cgo/gcc.go | 19 +- libgo/go/cmd/go/internal/generate/generate.go | 3 +- libgo/go/cmd/go/internal/test/test.go | 10 +- libgo/go/cmd/go/internal/work/exec.go | 3 + libgo/go/cmd/go/testdata/script/mod_edit_go.txt | 7 + libgo/go/go/build/deps_test.go | 5 +- .../go/internal/syscall/execenv/execenv_default.go | 19 + .../syscall/execenv/execenv_windows.go} | 18 +- libgo/go/os/env_default.go | 13 - libgo/go/os/exec/exec.go | 15 +- libgo/go/os/exec_posix.go | 3 +- libgo/go/runtime/alg.go | 12 +- libgo/go/runtime/checkptr.go | 4 +- libgo/go/runtime/checkptr_test.go | 9 +- libgo/go/runtime/defer_test.go | 120 ++++++ libgo/go/runtime/export_test.go | 25 ++ libgo/go/runtime/hash_test.go | 49 +++ libgo/go/runtime/mgc.go | 48 ++- libgo/go/runtime/mkpreempt.go | 43 ++- libgo/go/runtime/panic.go | 15 +- libgo/go/runtime/pprof/map.go | 3 +- libgo/go/runtime/pprof/pprof_test.go | 59 ++- libgo/go/runtime/pprof/proto.go | 45 ++- libgo/go/runtime/pprof/proto_test.go | 13 + libgo/go/runtime/pprof/runtime.go | 3 + libgo/go/runtime/runtime2.go | 4 + libgo/go/runtime/signal_unix.go | 1 + libgo/go/runtime/symtab.go | 31 ++ libgo/go/runtime/testdata/testprog/checkptr.go | 11 +- libgo/go/runtime/time.go | 256 +++++-------- libgo/go/testing/testing.go | 11 +- libgo/go/time/time_test.go | 40 +- libgo/libgo-packages.txt | 1 + libgo/misc/cgo/testgodefs/testdata/issue37479.go | 33 ++ libgo/misc/cgo/testgodefs/testdata/issue37621.go | 23 ++ libgo/misc/cgo/testgodefs/testdata/main.go | 8 + libgo/misc/cgo/testgodefs/testgodefs_test.go | 2 + libgo/runtime/go-callers.c | 36 ++ libgomp/ChangeLog | 12 + libgomp/configure | 3 + libgomp/configure.ac | 1 + libgomp/testsuite/Makefile.am | 2 + libgomp/testsuite/Makefile.in | 6 +- libgomp/testsuite/libgomp-site-extra.exp.in | 1 + libgomp/testsuite/libgomp-test-support.exp.in | 2 - libstdc++-v3/ChangeLog | 19 + libstdc++-v3/include/bits/char_traits.h | 101 ++++- libstdc++-v3/include/std/string_view | 1 + .../operations/copy/char/constexpr.cc | 32 ++ .../operations/copy/wchar_t/constexpr.cc | 32 ++ 78 files changed, 1277 insertions(+), 604 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/paren-init22.C create mode 100644 gcc/testsuite/gfortran.dg/pr93686_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93686_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93686_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93686_4.f90 create mode 100644 libatomic/testsuite/libatomic-site-extra.exp.in create mode 100644 libgo/go/internal/syscall/execenv/execenv_default.go rename libgo/go/{os/env_windows.go => internal/syscall/execenv/execenv_windows.go} (64%) delete mode 100644 libgo/go/os/env_default.go create mode 100644 libgo/misc/cgo/testgodefs/testdata/issue37479.go create mode 100644 libgo/misc/cgo/testgodefs/testdata/issue37621.go create mode 100644 libgomp/testsuite/libgomp-site-extra.exp.in create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string_view/operations/ [...] create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string_view/operations/ [...]