Skip to content

Commit

Permalink
Fix sparc struct fpu definition.
Browse files Browse the repository at this point in the history
	* sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
	the size of the fpu_fr.fpu_dregs[] array.
  • Loading branch information
Jose E. Marchesi authored and David S. Miller committed Nov 1, 2014
1 parent 1679ba8 commit 4c6da7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/sparc/sys/ucontext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 4c6da7d

Please sign in to comment.