This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c96743f PR libstdc++/77395 * include/std/type_traits (is_constructi [...] new 9ac07c1 runtime: use -fgo-c-header to build C header file
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: gcc/go/gofrontend/MERGE | 2 +- libgo/Makefile.am | 46 +- libgo/Makefile.in | 46 +- libgo/go/runtime/mcache.go | 102 +++++ libgo/go/runtime/runtime2.go | 835 ++++++++++++++++++++++++++++++++++++ libgo/go/runtime/type.go | 100 +++++ libgo/mksysinfo.sh | 1 + libgo/runtime/go-cgo.c | 24 +- libgo/runtime/go-defer.c | 39 +- libgo/runtime/go-defer.h | 47 -- libgo/runtime/go-deferred-recover.c | 3 +- libgo/runtime/go-panic.c | 41 +- libgo/runtime/go-panic.h | 23 +- libgo/runtime/go-recover.c | 61 ++- libgo/runtime/go-signal.c | 24 +- libgo/runtime/go-unwind.c | 56 ++- libgo/runtime/heapdump.c | 45 +- libgo/runtime/lock_sema.c | 4 +- libgo/runtime/malloc.goc | 16 +- libgo/runtime/malloc.h | 100 +---- libgo/runtime/mcache.c | 4 +- libgo/runtime/mcentral.c | 2 +- libgo/runtime/mgc0.c | 52 +-- libgo/runtime/mheap.c | 26 +- libgo/runtime/mprof.goc | 2 +- libgo/runtime/msize.c | 18 +- libgo/runtime/netpoll.goc | 4 +- libgo/runtime/panic.c | 23 +- libgo/runtime/proc.c | 720 ++++++++++++++++--------------- libgo/runtime/runtime.c | 3 +- libgo/runtime/runtime.h | 268 ++---------- libgo/runtime/runtime1.goc | 4 +- libgo/runtime/signal_unix.c | 16 +- 33 files changed, 1757 insertions(+), 1000 deletions(-) create mode 100644 libgo/go/runtime/mcache.go create mode 100644 libgo/go/runtime/runtime2.go create mode 100644 libgo/go/runtime/type.go delete mode 100644 libgo/runtime/go-defer.h