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

@ -1,3 +1,8 @@
2014-11-01 Jose E. Marchesi <jose.marchesi@oracle.com>
* sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
the size of the fpu_fr.fpu_dregs[] array.
2014-11-01 Joseph Myers <joseph@codesourcery.com>
* posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.

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