This commit is contained in:
Stanislav Shwartsman 2004-06-26 12:35:48 +00:00
parent 4b4538619e
commit 26664e8044
2 changed files with 3 additions and 3 deletions

View File

@ -233,7 +233,7 @@ void BX_CPU_C::FPREM1(bxInstruction_c *i)
} }
float_status_t status = float_status_t status =
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS); FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
Bit64u quotient; Bit64u quotient;
@ -276,7 +276,7 @@ void BX_CPU_C::FPREM(bxInstruction_c *i)
} }
float_status_t status = float_status_t status =
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS); FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
Bit64u quotient; Bit64u quotient;

View File

@ -339,7 +339,7 @@ invalid:
} }
return return
normalizeRoundAndPackFloatx80(80, aSign ^ bSign, zExp, zSig0, zSig1, status); roundAndPackFloatx80(80, aSign ^ bSign, zExp, zSig0, zSig1, status);
} }
/* ******************************** */ /* ******************************** */