diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-17 16:54:25 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-17 16:54:25 +0000 |
commit | 5fd1e54195e3f287e6c199656de1eaa481f015f0 (patch) | |
tree | 99f8a824655109bd2cd36ab0a8502e2fd713101a /libgo/Makefile.am | |
parent | c258c00465c6188b1df0518a241b2c7f84d572f1 (diff) | |
download | gcc-5fd1e54195e3f287e6c199656de1eaa481f015f0.tar.gz |
runtime: copy rdebug code from Go 1.7 runtime
While we're at it, update the runtime/debug package, and start running
its testsuite by default. I'm not sure why runtime/debug was not
previously updated to 1.7. Doing that led me to fix some minor aspects
of runtime.Stack and the C function runtime/debug.readGCStats.
Reviewed-on: https://go-review.googlesource.com/31251
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@241261 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 9e19ad2d75c..d6a53eff9ac 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -515,7 +515,6 @@ runtime_files = \ lfstack.c \ malloc.c \ netpoll.c \ - rdebug.c \ reflect.c \ runtime1.c \ sigqueue.c \ @@ -3035,6 +3034,7 @@ TEST_PACKAGES = \ os/user/check \ path/filepath/check \ regexp/syntax/check \ + runtime/debug/check \ runtime/pprof/check \ runtime/internal/atomic/check \ runtime/internal/sys/check \ |