mirror of
https://github.com/rwinkhart/sys.git
synced 2026-09-03 23:57:32 -04:00
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:
committed by
Tobias Klauser
parent
53bf42e6b3
commit
33540a1f60
@@ -397,7 +397,7 @@ type Reg struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type FpReg struct {
|
type FpReg struct {
|
||||||
Fp_q [32]uint128
|
Fp_q [512]uint8
|
||||||
Fp_sr uint32
|
Fp_sr uint32
|
||||||
Fp_cr uint32
|
Fp_cr uint32
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user