]> Cypherpunks repositories - gostls13.git/commit
runtime: rename aeshashbody to runtime.aeshashbody
authorMichael Pratt <mpratt@google.com>
Thu, 22 Jan 2026 16:47:42 +0000 (11:47 -0500)
committerMichael Pratt <mpratt@google.com>
Tue, 27 Jan 2026 16:24:58 +0000 (08:24 -0800)
commit64e8b238a1e5ce4cc47eec561db0ccf904e29e50
treeb5d38e6a365e017c15c32ae46523d0ed38957609
parenta977717393fd779921ca258988230dbc741f5912
runtime: rename aeshashbody to runtime.aeshashbody

Currently this is a raw symbol name with no package component, which is
confusing when seen in profilers or similar tools.

This function does not follow a Go ABI, and thus should not have a Go
function declaration. go vet requires declaration for standard assembly
functions.

CL 176100 removed the package name as part of making vet pass on package
runtime, but simply making the function static via the <> suffix is
sufficient, there is no need to shorten the symbol name.

Change-Id: I6a6a636c6030f1c9a4b8bb330978733bb336b08e
Reviewed-on: https://go-review.googlesource.com/c/go/+/738521
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
src/runtime/asm_386.s
src/runtime/asm_amd64.s
src/runtime/asm_arm64.s