From: Tobias Klauser Date: Fri, 6 Apr 2018 12:40:18 +0000 (+0200) Subject: cmd/asm/internal/arch: unexport ParseARM64Suffix X-Git-Tag: go1.11beta1~945 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=58e3f2ac8786ffc21a4aae83eb83cfee413ba802;p=gostls13.git cmd/asm/internal/arch: unexport ParseARM64Suffix ParseARM64Suffix is not used outside cmd/asm/internal/arch. Change-Id: I8e7782dce11cf8cd2fd08dd17e555ced8d87ba24 Reviewed-on: https://go-review.googlesource.com/105115 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Daniel Martí Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/asm/internal/arch/arm64.go b/src/cmd/asm/internal/arch/arm64.go index 0bbd7f98c7..af45f421e9 100644 --- a/src/cmd/asm/internal/arch/arm64.go +++ b/src/cmd/asm/internal/arch/arm64.go @@ -85,7 +85,7 @@ func ARM64Suffix(prog *obj.Prog, cond string) bool { if cond == "" { return true } - bits, ok := ParseARM64Suffix(cond) + bits, ok := parseARM64Suffix(cond) if !ok { return false } @@ -93,10 +93,10 @@ func ARM64Suffix(prog *obj.Prog, cond string) bool { return true } -// ParseARM64Suffix parses the suffix attached to an ARM64 instruction. +// parseARM64Suffix parses the suffix attached to an ARM64 instruction. // The input is a single string consisting of period-separated condition // codes, such as ".P.W". An initial period is ignored. -func ParseARM64Suffix(cond string) (uint8, bool) { +func parseARM64Suffix(cond string) (uint8, bool) { if cond == "" { return 0, true }