This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2189196 Minor simplification to std::_Bind_result helpers new 132ed07 runtime: copy channel code 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 +- gcc/go/gofrontend/escape.cc | 4 - gcc/go/gofrontend/expressions.cc | 38 +- gcc/go/gofrontend/runtime.def | 19 +- gcc/go/gofrontend/statements.cc | 62 +-- gcc/go/gofrontend/types.cc | 47 ++ gcc/go/gofrontend/types.h | 3 + libgo/Makefile.am | 1 - libgo/Makefile.in | 8 +- libgo/go/context/context_test.go | 2 +- libgo/go/runtime/chan.go | 724 ++++++++++++++++++++++++ libgo/go/runtime/runtime2.go | 8 +- libgo/go/runtime/select.go | 697 +++++++++++++++++++++++ libgo/go/runtime/stubs.go | 64 +++ libgo/go/runtime/trace.go | 1008 ++++++++++++++++++++++++++++++++++ libgo/runtime/chan.goc | 1130 -------------------------------------- libgo/runtime/chan.h | 76 --- libgo/runtime/go-cgo.c | 5 +- libgo/runtime/heapdump.c | 4 +- libgo/runtime/mgc0.c | 9 +- libgo/runtime/proc.c | 44 +- libgo/runtime/runtime.h | 4 +- libgo/runtime/sema.goc | 15 +- 23 files changed, 2676 insertions(+), 1298 deletions(-) create mode 100644 libgo/go/runtime/chan.go create mode 100644 libgo/go/runtime/select.go create mode 100644 libgo/go/runtime/trace.go delete mode 100644 libgo/runtime/chan.goc delete mode 100644 libgo/runtime/chan.h