From 52393ad036e795f2da1e2692f17f76ccb00fb410 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 14 Nov 2015 15:31:32 -0800 Subject: [PATCH] runtime: remove go:nosplit comment from reflect.typelinks A nosplit comment was added to reflect.typelinks accidentally in https://golang.org/cl/98510044. There is only one caller of reflect.typelinks, reflect.typesByString, and that function is not nosplit. There is no reason for reflect.typelinks to be nosplit. Change-Id: I0fd3cc66fafcd92643e38e53fa586d6b2f868a0a Reviewed-on: https://go-review.googlesource.com/16932 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Minux Ma --- src/runtime/runtime1.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go index 4c0242350c..f8ae5df53f 100644 --- a/src/runtime/runtime1.go +++ b/src/runtime/runtime1.go @@ -453,7 +453,6 @@ func gomcache() *mcache { } //go:linkname reflect_typelinks reflect.typelinks -//go:nosplit func reflect_typelinks() [][]*_type { ret := [][]*_type{firstmoduledata.typelinks} for datap := firstmoduledata.next; datap != nil; datap = datap.next { -- 2.48.1