aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/export_test.go
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2016-10-21 20:07:06 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2016-10-21 20:07:06 +0000
commite597e0533d69081e6d6b01ca19f2924c1b8307ff (patch)
tree7c1aa0e24fac610637343c40fe8b6a76b60f3ccc /libgo/go/runtime/export_test.go
parent16b61424dd309f61326f577a6deb8487c6c1f291 (diff)
downloadgcc-e597e0533d69081e6d6b01ca19f2924c1b8307ff.zip
gcc-e597e0533d69081e6d6b01ca19f2924c1b8307ff.tar.gz
gcc-e597e0533d69081e6d6b01ca19f2924c1b8307ff.tar.bz2
runtime: copy lfstack code from Go 1.7 runtime
Note that lfstack_64bit.go was modified for Solaris support in a different, and better, way than the superseded lfstack.goc code. Reviewed-on: https://go-review.googlesource.com/31673 From-SVN: r241427
Diffstat (limited to 'libgo/go/runtime/export_test.go')
-rw-r--r--libgo/go/runtime/export_test.go14
1 files changed, 10 insertions, 4 deletions
diff --git a/libgo/go/runtime/export_test.go b/libgo/go/runtime/export_test.go
index 711a551..d3443566 100644
--- a/libgo/go/runtime/export_test.go
+++ b/libgo/go/runtime/export_test.go
@@ -6,6 +6,10 @@
package runtime
+import (
+ "unsafe"
+)
+
//var Fadd64 = fadd64
//var Fsub64 = fsub64
//var Fmul64 = fmul64
@@ -32,11 +36,13 @@ type LFNode struct {
Pushcnt uintptr
}
-func lfstackpush_go(head *uint64, node *LFNode)
-func lfstackpop_go(head *uint64) *LFNode
+func LFStackPush(head *uint64, node *LFNode) {
+ lfstackpush(head, (*lfnode)(unsafe.Pointer(node)))
+}
-var LFStackPush = lfstackpush_go
-var LFStackPop = lfstackpop_go
+func LFStackPop(head *uint64) *LFNode {
+ return (*LFNode)(unsafe.Pointer(lfstackpop(head)))
+}
type ParFor struct {
body func(*ParFor, uint32)