unix: don't use non-existing uint128 type on freebsd/arm64

CL 179099 introduced type FpReg on freebsd, on freebsd/arm64 using a
type uint128. This type doesn't exist in Go.

Change-Id: Ie7f065f38f2cc2c163abdfa7dddad886b8edbe3b
Reviewed-on: https://go-review.googlesource.com/c/sys/+/203419
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Tobias Klauser
2019-10-25 21:13:51 +02:00
committed by Tobias Klauser
parent 53bf42e6b3
commit 33540a1f60

View File

@@ -397,7 +397,7 @@ type Reg struct {
}
type FpReg struct {
Fp_q [32]uint128
Fp_q [512]uint8
Fp_sr uint32
Fp_cr uint32
}