From 6681ff9c9e7805fab9e0dcb767f4807af03dbbbd Mon Sep 17 00:00:00 2001 From: Mark Freeman Date: Mon, 5 May 2025 13:40:55 -0400 Subject: pkgbits: replace references to RelocKind with SectionKind Change-Id: Id194a42645d1da6440558bf12dc252f347072f86 Reviewed-on: https://go-review.googlesource.com/c/go/+/670175 Auto-Submit: Mark Freeman LUCI-TryBot-Result: Go LUCI Reviewed-by: Mark Freeman Reviewed-by: Robert Griesemer --- src/internal/pkgbits/reloc.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/internal/pkgbits') diff --git a/src/internal/pkgbits/reloc.go b/src/internal/pkgbits/reloc.go index e4b494d749..e29150c3e3 100644 --- a/src/internal/pkgbits/reloc.go +++ b/src/internal/pkgbits/reloc.go @@ -4,11 +4,10 @@ package pkgbits -// A RelocKind indicates a section, as well as the ordering of sections within +// A SectionKind indicates a section, as well as the ordering of sections within // unified export data. Any object given a dedicated section can be referred to // via a section / index pair (and thus dereferenced) in other sections. -type RelocKind int32 // TODO(markfreeman): Replace with uint8. -type SectionKind = RelocKind +type SectionKind int32 // TODO(markfreeman): Replace with uint8. const ( RelocString SectionKind = iota -- cgit v1.3-5-g9baa