]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: remove unused export_test declarations
authorDavid Crawshaw <crawshaw@golang.org>
Wed, 31 Dec 2014 19:08:54 +0000 (11:08 -0800)
committerDavid Crawshaw <crawshaw@golang.org>
Thu, 1 Jan 2015 18:44:36 +0000 (18:44 +0000)
Change-Id: Iac28c4bbe949af5628cef8ecafdd59ab5d71e6cc
Reviewed-on: https://go-review.googlesource.com/2240
Reviewed-by: Keith Randall <khr@golang.org>
src/runtime/export_test.go

index 6faaa41af4d532c7241d08696df2cd6950a11dd9..87df7c99e47ab09af09274efde8346c29b5afee7 100644 (file)
@@ -18,9 +18,6 @@ var Fcmp64 = fcmp64
 var Fintto64 = fintto64
 var F64toint = f64toint
 
-// in asm_*.s
-func stackguard() (sp, limit uintptr)
-
 var Entersyscall = entersyscall
 var Exitsyscall = exitsyscall
 var LockedOSThread = lockedOSThread
@@ -30,9 +27,6 @@ type LFNode struct {
        Pushcnt uintptr
 }
 
-func lfstackpush_m()
-func lfstackpop_m()
-
 func LFStackPush(head *uint64, node *LFNode) {
        lfstackpush(head, (*lfnode)(unsafe.Pointer(node)))
 }
@@ -52,11 +46,6 @@ type ParFor struct {
        wait    bool
 }
 
-func newparfor_m()
-func parforsetup_m()
-func parfordo_m()
-func parforiters_m()
-
 func NewParFor(nthrmax uint32) *ParFor {
        var desc *ParFor
        systemstack(func() {