This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from dd07e32 [Testsuite] Use correct effective-target settings for ARM fp1 [...] new b8309f2 Remove use of std::abs in experimental::{gcd,lcm} new 0dad6de runtime: copy internal locking code from Go 1.7 runtime
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/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 7 + gcc/go/gofrontend/gogo.cc | 13 + libgo/Makefile.am | 14 +- libgo/Makefile.in | 86 +++--- libgo/config.h.in | 3 + libgo/configure | 2 +- libgo/configure.ac | 2 +- libgo/go/runtime/export_test.go | 2 - libgo/go/runtime/lock_futex.go | 225 ++++++++++++++ libgo/go/runtime/lock_sema.go | 281 ++++++++++++++++++ libgo/go/runtime/os_darwin.go | 326 +++++++++++++++++++++ libgo/go/runtime/os_dragonfly.go | 62 ++++ libgo/go/runtime/os_freebsd.go | 56 ++++ libgo/go/runtime/os_linux.go | 74 +++++ libgo/go/runtime/os_netbsd.go | 73 +++++ libgo/go/runtime/os_openbsd.go | 76 +++++ libgo/go/runtime/os_solaris.go | 85 ++++++ libgo/go/runtime/runtime2.go | 30 +- libgo/go/runtime/stubs.go | 32 +- libgo/mkrsysinfo.sh | 103 +++++++ libgo/runtime/go-cgo.c | 14 +- libgo/runtime/lock_futex.c | 204 ------------- libgo/runtime/lock_sema.c | 281 ------------------ libgo/runtime/malloc.goc | 6 +- libgo/runtime/proc.c | 57 ++-- libgo/runtime/runtime.c | 10 + libgo/runtime/runtime.h | 48 +-- libgo/runtime/thread-linux.c | 58 ---- libgo/runtime/thread-sema.c | 125 -------- libgo/sysinfo.c | 3 + libstdc++-v3/ChangeLog | 10 + libstdc++-v3/include/experimental/numeric | 22 +- .../69626.cc => experimental/numeric/77801.cc} | 11 +- libstdc++-v3/testsuite/experimental/numeric/gcd.cc | 4 + libstdc++-v3/testsuite/experimental/numeric/lcm.cc | 3 + 36 files changed, 1579 insertions(+), 831 deletions(-) create mode 100644 libgo/go/runtime/lock_futex.go create mode 100644 libgo/go/runtime/lock_sema.go create mode 100644 libgo/go/runtime/os_darwin.go create mode 100644 libgo/go/runtime/os_dragonfly.go create mode 100644 libgo/go/runtime/os_freebsd.go create mode 100644 libgo/go/runtime/os_netbsd.go create mode 100644 libgo/go/runtime/os_openbsd.go create mode 100644 libgo/go/runtime/os_solaris.go create mode 100755 libgo/mkrsysinfo.sh delete mode 100644 libgo/runtime/lock_futex.c delete mode 100644 libgo/runtime/lock_sema.c copy libstdc++-v3/testsuite/{21_strings/c_strings/char/69626.cc => experimental/nu [...]