aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/asm/internal/arch
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2018-04-06 14:40:18 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2018-04-06 14:09:04 +0000
commit58e3f2ac8786ffc21a4aae83eb83cfee413ba802 (patch)
tree1ecdf46a1cc56d86982db4367e5f3ceb6ec31c29 /src/cmd/asm/internal/arch
parent284c53498fd4f52967067eb7c2d0102467980155 (diff)
downloadgo-58e3f2ac8786ffc21a4aae83eb83cfee413ba802.tar.xz
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 <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/cmd/asm/internal/arch')
-rw-r--r--src/cmd/asm/internal/arch/arm64.go6
1 files changed, 3 insertions, 3 deletions
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
}