aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/plugin.go
diff options
context:
space:
mode:
authorDavid Chase <drchase@google.com>2023-04-25 19:14:05 -0400
committerDavid Chase <drchase@google.com>2023-05-11 13:45:40 +0000
commit2e93fe0a9f55aaa2a762e7fb454d76b2ee3a4e4f (patch)
tree6ad00fee3adb58714aa001ece696eeebeb2b5087 /src/runtime/plugin.go
parenta2838ec5f20b56e94a18c873ab4b68397355e214 (diff)
downloadgo-2e93fe0a9f55aaa2a762e7fb454d76b2ee3a4e4f.tar.xz
runtime: move per-type types to internal/abi
Change-Id: I1f031f0f83a94bebe41d3978a91a903dc5bcda66 Reviewed-on: https://go-review.googlesource.com/c/go/+/489276 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith Randall <khr@golang.org> Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/runtime/plugin.go')
-rw-r--r--src/runtime/plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/plugin.go b/src/runtime/plugin.go
index 690f85750b..40dfefde17 100644
--- a/src/runtime/plugin.go
+++ b/src/runtime/plugin.go
@@ -84,7 +84,7 @@ func plugin_lastmoduleinit() (path string, syms map[string]any, initTasks []*ini
valp := (*[2]unsafe.Pointer)(unsafe.Pointer(&val))
(*valp)[0] = unsafe.Pointer(t)
- name := symName.name()
+ name := symName.Name()
if t.Kind_&kindMask == kindFunc {
name = "." + name
}