This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ff56abd gcc/testsuite/Changelog: * gcc.dg/tree-ssa/builtin-sprintf-w [...] new 634150f runtime: copy mstats 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/parse.cc | 15 ++ libgo/go/runtime/mem.go | 77 ------- libgo/go/runtime/mstats.go | 418 +++++++++++++++++++++++++++++++++++++ libgo/go/runtime/stubs.go | 48 +++++ libgo/runtime/cpuprof.goc | 2 +- libgo/runtime/heapdump.c | 60 +++--- libgo/runtime/malloc.goc | 34 ++- libgo/runtime/malloc.h | 63 +----- libgo/runtime/mem_posix_memalign.c | 4 +- libgo/runtime/mgc0.c | 175 ++++++---------- libgo/runtime/mheap.c | 53 +++-- libgo/runtime/mprof.goc | 26 +-- libgo/runtime/msize.c | 4 +- libgo/runtime/netpoll.goc | 2 +- libgo/runtime/netpoll_select.c | 4 +- libgo/runtime/proc.c | 20 +- libgo/runtime/runtime.h | 11 +- 18 files changed, 668 insertions(+), 350 deletions(-) delete mode 100644 libgo/go/runtime/mem.go create mode 100644 libgo/go/runtime/mstats.go