1
0
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:
Jose E. Marchesi
2014-11-01 13:45:02 -07:00
committed by David S. Miller
parent 1679ba8eb6
commit 4c6da7da9f
2 changed files with 6 additions and 1 deletions

View File

@ -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 */