From 0d453232db9c4eeea5faa7dd171b95a59619f160 Mon Sep 17 00:00:00 2001 From: Paul Cacheux Date: Fri, 6 Dec 2024 14:06:36 +0100 Subject: [PATCH] cmd/internal/goobj: add missing symbol align field in top level doc Fix the documentation of the symbol's align field that is present in the code but not in the top level documentation Change-Id: I753f2379b22487899ceee8ebc9c2e659d74ea986 Reviewed-on: https://go-review.googlesource.com/c/go/+/633777 Reviewed-by: Ian Lance Taylor Reviewed-by: Michael Knyszek LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor --- src/cmd/internal/goobj/objfile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmd/internal/goobj/objfile.go b/src/cmd/internal/goobj/objfile.go index d54fa993d2..a9342427ef 100644 --- a/src/cmd/internal/goobj/objfile.go +++ b/src/cmd/internal/goobj/objfile.go @@ -55,6 +55,7 @@ import ( // Flag uint8 // Flag2 uint8 // Size uint32 +// Align uint32 // } // Hashed64Defs [...]struct { // short hashed (content-addressable) symbol definitions // ... // same as SymbolDefs -- 2.48.1