This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from b2450df * es.po, fr.po: Update. new 57f872b OpenMP loop cloning for SIMT execution new 03ac9de runtime: rewrite panic/defer code from C to Go
The 2 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/ChangeLog | 22 ++ gcc/go/ChangeLog | 5 + gcc/go/go-gcc.cc | 9 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/backend.h | 2 +- gcc/go/gofrontend/escape.cc | 8 +- gcc/go/gofrontend/expressions.cc | 6 +- gcc/go/gofrontend/gogo.cc | 25 +- gcc/go/gofrontend/runtime.def | 20 +- gcc/go/gofrontend/statements.cc | 4 +- gcc/internal-fn.c | 8 + gcc/internal-fn.def | 1 + gcc/omp-low.c | 79 +++- gcc/tree-core.h | 4 + gcc/tree-pretty-print.c | 4 + gcc/tree.c | 3 + libgo/Makefile.am | 4 - libgo/Makefile.in | 43 +- libgo/go/reflect/makefunc_ffi_c.c | 20 +- libgo/go/runtime/error.go | 2 +- libgo/go/runtime/extern.go | 9 - libgo/go/runtime/panic.go | 758 ++++++++++++++++++++++++++++++++++++ libgo/go/runtime/runtime2.go | 15 +- libgo/go/runtime/stubs.go | 28 +- libgo/runtime/go-cgo.c | 3 +- libgo/runtime/go-defer.c | 84 ---- libgo/runtime/go-deferred-recover.c | 93 ----- libgo/runtime/go-panic.c | 110 ------ libgo/runtime/go-panic.h | 27 -- libgo/runtime/go-recover.c | 273 ------------- libgo/runtime/go-signal.c | 2 - libgo/runtime/go-strslice.c | 3 - libgo/runtime/go-unwind.c | 142 ++----- libgo/runtime/heapdump.c | 9 +- libgo/runtime/mgc0.c | 15 +- libgo/runtime/panic.c | 225 +---------- libgo/runtime/proc.c | 28 +- libgo/runtime/runtime.h | 24 +- 38 files changed, 1051 insertions(+), 1068 deletions(-) delete mode 100644 libgo/runtime/go-defer.c delete mode 100644 libgo/runtime/go-deferred-recover.c delete mode 100644 libgo/runtime/go-panic.c delete mode 100644 libgo/runtime/go-panic.h delete mode 100644 libgo/runtime/go-recover.c