mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Fix sparc struct fpu definition.
* sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix the size of the fpu_fr.fpu_dregs[] array.
This commit is contained in:
committed by
David S. Miller
parent
1679ba8eb6
commit
4c6da7da9f
@ -202,7 +202,7 @@ typedef struct fpu
|
||||
{
|
||||
union { /* FPU floating point regs */
|
||||
unsigned fpu_regs[32]; /* 32 singles */
|
||||
double fpu_dregs[16]; /* 32 doubles */
|
||||
double fpu_dregs[32]; /* 32 doubles */
|
||||
long double fpu_qregs[16]; /* 16 quads */
|
||||
} fpu_fr;
|
||||
struct fq *fpu_q; /* ptr to array of FQ entries */
|
||||
|
Reference in New Issue
Block a user