aboutsummaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2024-03-05 10:54:22 +0100
committerGopher Robot <gobot@golang.org>2024-03-08 01:59:11 +0000
commit80a91d34f4cb3134f6b88b075893077cc3ab47d8 (patch)
treedc0602963e70101e9d37d6799eba0ce650f9b3ef /src/os
parent1a800d1c88d54ab0b4cee64ec8d79c377544fe48 (diff)
downloadgo-80a91d34f4cb3134f6b88b075893077cc3ab47d8.tar.gz
go-80a91d34f4cb3134f6b88b075893077cc3ab47d8.zip
os: use goarch.BigEndian
Change-Id: I83c23ae0933f6abe4c07144f69c3d9c18aece6e8 Reviewed-on: https://go-review.googlesource.com/c/go/+/569175 Auto-Submit: Ian Lance Taylor <iant@google.com> Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/os')
-rw-r--r--src/os/dir_unix.go3
-rw-r--r--src/os/endian_big.go9
-rw-r--r--src/os/endian_little.go9
3 files changed, 2 insertions, 19 deletions
diff --git a/src/os/dir_unix.go b/src/os/dir_unix.go
index 266a78acaf..1e8d1d0a30 100644
--- a/src/os/dir_unix.go
+++ b/src/os/dir_unix.go
@@ -7,6 +7,7 @@
package os
import (
+ "internal/goarch"
"io"
"runtime"
"sync"
@@ -153,7 +154,7 @@ func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
if len(b) < int(off+size) {
return 0, false
}
- if isBigEndian {
+ if goarch.BigEndian {
return readIntBE(b[off:], size), true
}
return readIntLE(b[off:], size), true
diff --git a/src/os/endian_big.go b/src/os/endian_big.go
deleted file mode 100644
index 0375e53372..0000000000
--- a/src/os/endian_big.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-//
-//go:build ppc64 || s390x || mips || mips64
-
-package os
-
-const isBigEndian = true
diff --git a/src/os/endian_little.go b/src/os/endian_little.go
deleted file mode 100644
index a7cf1cdda8..0000000000
--- a/src/os/endian_little.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-//
-//go:build 386 || amd64 || arm || arm64 || loong64 || ppc64le || mips64le || mipsle || riscv64 || wasm
-
-package os
-
-const isBigEndian = false