Ensure we set all fpu registers to zero by using the address and size of

the union over one of its members.
This commit is contained in:
Andrew Turner 2013-08-17 14:42:40 +00:00
parent fbc66a3be6
commit b013dea54e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=254450

View file

@ -90,7 +90,7 @@ pt_fpreg_to_ucontext(const struct fpreg *r __unused, ucontext_t *uc)
mcontext_t *mc = &uc->uc_mcontext;
/* XXX */
memset(&mc->__fpu.__fpregs, 0, sizeof(__fpregset_t));
memset(&mc->__fpu, 0, sizeof(mc->__fpu));
}
void