зеркало из https://github.com/mozilla/gecko-dev.git
Bug 533035 - Linux64 bustage fix, try two -- looks like other systems aren't picking up the <stdint.h> include mine is. Or something. r=redness
--HG-- extra : rebase_source : 6aff511af4a1744fab88e698735feb984ac15362
This commit is contained in:
Родитель
f18ded3596
Коммит
370808eea9
|
@ -242,10 +242,10 @@ static void fpehandler(int signum, siginfo_t *si, void *context)
|
|||
*sw &= ~FPU_STATUS_FLAGS;
|
||||
#endif
|
||||
#if defined(__amd64__)
|
||||
uint16_t *cw = &uc->uc_mcontext.fpregs->cwd;
|
||||
__uint16_t *cw = &uc->uc_mcontext.fpregs->cwd;
|
||||
*cw |= FPU_EXCEPTION_MASK;
|
||||
|
||||
uint16_t *sw = &uc->uc_mcontext.fpregs->swd;
|
||||
__uint16_t *sw = &uc->uc_mcontext.fpregs->swd;
|
||||
*sw &= ~FPU_STATUS_FLAGS;
|
||||
|
||||
__uint32_t *mxcsr = &uc->uc_mcontext.fpregs->mxcsr;
|
||||
|
|
Загрузка…
Ссылка в новой задаче