diff options
author | Andreas Kling <kling@serenityos.org> | 2020-11-14 15:27:43 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-14 15:34:53 +0100 |
commit | ca85ecc032d8ee20ec5cdeafcb5a643e35f034d8 (patch) | |
tree | e21a32f1e303c0cd8d9f8521a838550c4c23af38 /DevTools/UserspaceEmulator | |
parent | a031c6c754e01d70cea76ba85f73d9198ffd9edb (diff) | |
download | serenity-ca85ecc032d8ee20ec5cdeafcb5a643e35f034d8.zip |
UserspaceEmulator: Remove some FPU debug spam
Diffstat (limited to 'DevTools/UserspaceEmulator')
-rw-r--r-- | DevTools/UserspaceEmulator/SoftCPU.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/DevTools/UserspaceEmulator/SoftCPU.cpp b/DevTools/UserspaceEmulator/SoftCPU.cpp index 516cb0e763..ef469b0d7f 100644 --- a/DevTools/UserspaceEmulator/SoftCPU.cpp +++ b/DevTools/UserspaceEmulator/SoftCPU.cpp @@ -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); |