aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/hash64.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/runtime/hash64.go')
-rw-r--r--libgo/go/runtime/hash64.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/libgo/go/runtime/hash64.go b/libgo/go/runtime/hash64.go
index 3f94256..cff663a 100644
--- a/libgo/go/runtime/hash64.go
+++ b/libgo/go/runtime/hash64.go
@@ -25,8 +25,7 @@ const (
)
func memhash(p unsafe.Pointer, seed, s uintptr) uintptr {
- if (GOARCH == "amd64" || GOARCH == "arm64") &&
- GOOS != "nacl" && useAeshash {
+ if (GOARCH == "amd64" || GOARCH == "arm64") && useAeshash {
return aeshash(p, seed, s)
}
h := uint64(seed + s*hashkey[0])