This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 29201b5 runtime: allocate _panic struct on heap new 4cee892 runtime: copy memory hash code from Go 1.7
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/types.cc | 2 +- libgo/Makefile.am | 1 + libgo/Makefile.in | 11 +- libgo/configure | 2 +- libgo/configure.ac | 2 +- libgo/go/runtime/alg.go | 45 +++ libgo/go/runtime/hash32.go | 94 +++++++ libgo/go/runtime/hash64.go | 94 +++++++ libgo/go/runtime/os_gccgo.go | 23 ++ libgo/go/runtime/runtime2.go | 12 +- libgo/go/runtime/stubs.go | 6 + libgo/go/runtime/unaligned1.go | 17 ++ libgo/go/runtime/unaligned2.go | 20 ++ libgo/runtime/aeshash.c | 583 +++++++++++++++++++++++++++++++++++++++ libgo/runtime/go-libmain.c | 1 + libgo/runtime/go-main.c | 1 + libgo/runtime/go-type-identity.c | 40 +-- libgo/runtime/go-type.h | 1 - libgo/runtime/proc.c | 3 +- libgo/runtime/runtime.h | 6 + libgo/runtime/runtime_c.c | 19 ++ 22 files changed, 937 insertions(+), 48 deletions(-) create mode 100644 libgo/go/runtime/hash32.go create mode 100644 libgo/go/runtime/hash64.go create mode 100644 libgo/go/runtime/os_gccgo.go create mode 100644 libgo/go/runtime/unaligned1.go create mode 100644 libgo/go/runtime/unaligned2.go create mode 100644 libgo/runtime/aeshash.c