fix typo in x86_64/x32 user_fpregs_struct

mxcs_mask should be mxcr_mask

(cherry picked from commit 4758f0565d)
This commit is contained in:
Felix Janda 2015-02-01 10:43:37 +01:00 committed by Rich Felker
parent 2604958894
commit 35c1939960
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ typedef struct user_fpregs_struct
{
uint16_t cwd, swd, ftw, fop;
uint64_t rip, rdp;
uint32_t mxcsr, mxcs_mask;
uint32_t mxcsr, mxcr_mask;
uint32_t st_space[32], xmm_space[64], padding[24];
} elf_fpregset_t;

View File

@ -5,7 +5,7 @@ typedef struct user_fpregs_struct
{
uint16_t cwd, swd, ftw, fop;
uint64_t rip, rdp;
uint32_t mxcsr, mxcs_mask;
uint32_t mxcsr, mxcr_mask;
uint32_t st_space[32], xmm_space[64], padding[24];
} elf_fpregset_t;