From 0a4215c234fedb3c888dd184416fa1ef08dfe9ae Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Wed, 26 Jun 2024 14:58:12 -0400 Subject: [PATCH] cmd/compile: keep internal/runtime packages sorted This is a minor cleanup from CL 600436. For #65355. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-darwin-amd64-longtest Change-Id: I8e27f0c6ba6bd35f4aa2b9d53c394fb5f1eb433d Reviewed-on: https://go-review.googlesource.com/c/go/+/595116 Reviewed-by: Austin Clements Auto-Submit: Michael Pratt Reviewed-by: Cherry Mui LUCI-TryBot-Result: Go LUCI --- src/cmd/compile/internal/test/inl_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cmd/compile/internal/test/inl_test.go b/src/cmd/compile/internal/test/inl_test.go index 58f5df953b4..5a8a156f02a 100644 --- a/src/cmd/compile/internal/test/inl_test.go +++ b/src/cmd/compile/internal/test/inl_test.go @@ -97,10 +97,6 @@ func TestIntendedInlining(t *testing.T) { "traceLocker.ok", "traceEnabled", }, - "internal/runtime/sys": {}, - "internal/runtime/math": { - "MulUintptr", - }, "bytes": { "(*Buffer).Bytes", "(*Buffer).Cap", @@ -117,6 +113,10 @@ func TestIntendedInlining(t *testing.T) { "internal/abi": { "UseInterfaceSwitchCache", }, + "internal/runtime/math": { + "MulUintptr", + }, + "internal/runtime/sys": {}, "compress/flate": { "byLiteral.Len", "byLiteral.Less",