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:
Jeff Walden 2009-12-18 22:29:13 -05:00
Родитель f18ded3596
Коммит 370808eea9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;