This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f325b94 Remove unused functions, take 2. new e93c20a runtime: copy cgo support from Go 1.7 runtime
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/go/runtime/cgo_gccgo.go | 110 ++++++++++ libgo/go/runtime/cgo_mmap.go | 43 ---- libgo/go/runtime/os_gccgo.go | 38 ++++ libgo/go/runtime/proc.go | 330 ++++++++++++++++++++++++++++ libgo/go/runtime/runtime2.go | 10 - libgo/go/runtime/signal1_unix.go | 2 +- libgo/go/runtime/signal_gccgo.go | 35 ++- libgo/go/runtime/signal_sighandler.go | 4 +- libgo/go/runtime/stubs.go | 31 ++- libgo/runtime/go-cgo.c | 192 ----------------- libgo/runtime/go-libmain.c | 1 + libgo/runtime/go-main.c | 3 + libgo/runtime/malloc.h | 1 - libgo/runtime/mgc0.c | 1 - libgo/runtime/proc.c | 389 ++++++---------------------------- libgo/runtime/runtime.h | 37 ++-- libgo/runtime/runtime_c.c | 35 +-- 18 files changed, 630 insertions(+), 634 deletions(-) create mode 100644 libgo/go/runtime/cgo_gccgo.go delete mode 100644 libgo/go/runtime/cgo_mmap.go create mode 100644 libgo/go/runtime/proc.go