1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 18:55:08 +00:00

UserspaceEmulator: Remove some FPU debug spam

This commit is contained in:
Andreas Kling 2020-11-14 15:27:43 +01:00
parent a031c6c754
commit ca85ecc032

View file

@ -1781,7 +1781,6 @@ void SoftCPU::FSUBR_RM64(const X86::Instruction& insn)
// FIXME: Respect shadow values
auto f64 = bit_cast<double>(new_f64.value());
fpu_set(0, f64 - fpu_get(0));
dbg() << "fsub.64: " << (double)fpu_get(0);
}
void SoftCPU::FDIV_RM64(const X86::Instruction& insn)
@ -1957,7 +1956,6 @@ void SoftCPU::FCOMIP(const X86::Instruction& insn)
void SoftCPU::FISTP_RM64(const X86::Instruction& insn)
{
ASSERT(!insn.modrm().is_register());
dbg() << "fistp64";
auto f = fpu_pop();
// FIXME: Respect rounding mode in m_fpu_cw.
auto i64 = static_cast<int64_t>(f);