This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from d30c4ae combine: Do not call simplify from inside change_zero_ext (PR78232) new 8721103 runtime: copy signal 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/expressions.cc | 2 +- gcc/go/gofrontend/gogo.cc | 12 +- gcc/go/gofrontend/gogo.h | 2 +- gcc/go/gofrontend/parse.cc | 2 +- libgo/Makefile.am | 14 +- libgo/Makefile.in | 28 +- libgo/go/runtime/panic.go | 90 +++++ libgo/go/runtime/runtime2.go | 4 +- libgo/go/runtime/signal1_unix.go | 332 ++++++++++++++++ libgo/go/runtime/signal2_unix.go | 11 +- libgo/go/runtime/signal_gccgo.go | 145 +++++++ libgo/go/runtime/signal_sighandler.go | 136 +++++++ libgo/go/runtime/signal_sigtramp.go | 31 +- libgo/go/runtime/signal_unix.go | 21 ++ libgo/go/runtime/sigpanic_unix.go | 48 +++ libgo/go/runtime/sigqueue.go | 178 +++++++++ libgo/go/runtime/stubs.go | 32 +- libgo/mkrsysinfo.sh | 5 + libgo/mksigtab.sh | 98 +++++ libgo/runtime/go-signal.c | 687 ++++++++++------------------------ libgo/runtime/panic.c | 8 +- libgo/runtime/proc.c | 17 +- libgo/runtime/runtime.h | 34 +- libgo/runtime/signal_unix.c | 176 --------- libgo/runtime/signal_unix.h | 22 -- libgo/runtime/sigqueue.goc | 172 --------- libgo/runtime/thread-linux.c | 1 - libgo/runtime/yield.c | 3 + 29 files changed, 1374 insertions(+), 939 deletions(-) create mode 100644 libgo/go/runtime/panic.go create mode 100644 libgo/go/runtime/signal1_unix.go create mode 100644 libgo/go/runtime/signal_gccgo.go create mode 100644 libgo/go/runtime/signal_sighandler.go create mode 100644 libgo/go/runtime/signal_unix.go create mode 100644 libgo/go/runtime/sigpanic_unix.go create mode 100644 libgo/go/runtime/sigqueue.go create mode 100644 libgo/mksigtab.sh delete mode 100644 libgo/runtime/signal_unix.c delete mode 100644 libgo/runtime/signal_unix.h delete mode 100644 libgo/runtime/sigqueue.goc