]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
runtime: use hash32, not hash64, for amd64p32, mips64p32, mips64p32le
authorIan Lance Taylor <iant@golang.org>
Tue, 7 Sep 2021 21:37:55 +0000 (14:37 -0700)
committerIan Lance Taylor <iant@golang.org>
Tue, 7 Sep 2021 22:05:11 +0000 (15:05 -0700)
Fixes PR go/102102

Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/348015

gcc/go/gofrontend/MERGE
libgo/go/runtime/hash32.go
libgo/go/runtime/hash64.go

index e9f38d449a41de71594c76b3b758300f822f14ec..c37726947806066f22f59609da51bdf22ffd0353 100644 (file)
@@ -1,4 +1,4 @@
-b3fad6957a04520013197ea7cab11bec3298d552
+e42c7c0216aec70834e8827174458aa4a50169fa
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 58ae38b200daf47416099e87dfbabdd047ef98fc..0df73035c051d754e8a62e5295078dd4d8df7a1c 100644 (file)
@@ -5,8 +5,8 @@
 // Hashing algorithm inspired by
 // wyhash: https://github.com/wangyi-fudan/wyhash/blob/ceb019b530e2c1c14d70b79bfa2bc49de7d95bc1/Modern%20Non-Cryptographic%20Hash%20Function%20and%20Pseudorandom%20Number%20Generator.pdf
 
-//go:build 386 || arm || mips || mipsle || armbe || m68k || nios2 || ppc || riscv || s390 || sh || shbe || sparc
-// +build 386 arm mips mipsle armbe m68k nios2 ppc riscv s390 sh shbe sparc
+//go:build 386 || arm || mips || mipsle || amd64p32 || armbe || m68k || mips64p32 || mips64p32le || nios2 || ppc || riscv || s390 || sh || shbe || sparc
+// +build 386 arm mips mipsle amd64p32 armbe m68k mips64p32 mips64p32le nios2 ppc riscv s390 sh shbe sparc
 
 package runtime
 
index 4b32d515c4b455fa815aacd412b1a98a75c6f56b..96ed90b9753d55b221085cd6ea635143ade3ae14 100644 (file)
@@ -5,8 +5,8 @@
 // Hashing algorithm inspired by
 // wyhash: https://github.com/wangyi-fudan/wyhash
 
-//go:build amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm || alpha || amd64p32 || arm64be || ia64 || mips64p32 || mips64p32le || sparc64
-// +build amd64 arm64 mips64 mips64le ppc64 ppc64le riscv64 s390x wasm alpha amd64p32 arm64be ia64 mips64p32 mips64p32le sparc64
+//go:build amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm || alpha || arm64be || ia64 || sparc64
+// +build amd64 arm64 mips64 mips64le ppc64 ppc64le riscv64 s390x wasm alpha arm64be ia64 sparc64
 
 package runtime