mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-10 14:02:43 +00:00
Use __uint64_t type for floating point registers
as compiler don't know about __uint128_t yet. Discussed with: theraven, kib
This commit is contained in:
parent
770fd1c976
commit
f3d389ee9e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295564
@ -50,7 +50,7 @@ struct gpregs {
|
||||
};
|
||||
|
||||
struct fpregs {
|
||||
__uint128_t fp_x[32];
|
||||
__uint64_t fp_x[64] __aligned(16);
|
||||
__uint64_t fp_fcsr;
|
||||
int fp_flags;
|
||||
int pad;
|
||||
|
Loading…
Reference in New Issue
Block a user