summaryrefslogtreecommitdiff
path: root/DevTools/UserspaceEmulator
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-08-11 15:02:06 -0400
committerAndreas Kling <kling@serenityos.org>2020-08-11 21:04:38 +0200
commitf8084cc0833df638697fd4264b3344df7caece40 (patch)
treeb3f069debff3f38e6fad9f87fa83b1e3ae8970e7 /DevTools/UserspaceEmulator
parentc6ee6c0b422c97fbd75db74165e3e04b5781b66e (diff)
downloadserenity-f8084cc0833df638697fd4264b3344df7caece40.zip
UserspaceEmulator: Remove some silly semicolons
Diffstat (limited to 'DevTools/UserspaceEmulator')
-rw-r--r--DevTools/UserspaceEmulator/SoftCPU.cpp94
1 files changed, 47 insertions, 47 deletions
diff --git a/DevTools/UserspaceEmulator/SoftCPU.cpp b/DevTools/UserspaceEmulator/SoftCPU.cpp
index c2c7984604..ba667afb33 100644
--- a/DevTools/UserspaceEmulator/SoftCPU.cpp
+++ b/DevTools/UserspaceEmulator/SoftCPU.cpp
@@ -1421,53 +1421,53 @@ void SoftCPU::FLDLG2(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FLDLN2(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FLDZ(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FNSTENV(const X86::Instruction&) { TODO_INSN(); }
-void SoftCPU::F2XM1(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FYL2X(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FPTAN(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FPATAN(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FXTRACT(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FPREM1(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FDECSTP(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FINCSTP(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNSTCW(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FPREM(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FYL2XP1(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FSQRT(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FSINCOS(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FRNDINT(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FSCALE(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FSIN(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCOS(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FIADD_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVB(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FIMUL_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVE(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FICOM_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVBE(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FICOMP_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVU(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FISUB_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FISUBR_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FUCOMPP(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FIDIV_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FIDIVR_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FILD_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVNB(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FISTTP_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVNE(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FIST_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVNBE(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FISTP_RM32(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCMOVNU(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNENI(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNDISI(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNCLEX(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNINIT(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FNSETPM(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FLD_RM80(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FUCOMI(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FCOMI(const X86::Instruction&) { TODO_INSN(); };
-void SoftCPU::FSTP_RM80(const X86::Instruction&) { TODO_INSN(); };
+void SoftCPU::F2XM1(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FYL2X(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FPTAN(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FPATAN(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FXTRACT(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FPREM1(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FDECSTP(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FINCSTP(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNSTCW(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FPREM(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FYL2XP1(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FSQRT(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FSINCOS(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FRNDINT(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FSCALE(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FSIN(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCOS(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FIADD_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVB(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FIMUL_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVE(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FICOM_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVBE(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FICOMP_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVU(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FISUB_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FISUBR_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FUCOMPP(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FIDIV_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FIDIVR_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FILD_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVNB(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FISTTP_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVNE(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FIST_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVNBE(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FISTP_RM32(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCMOVNU(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNENI(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNDISI(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNCLEX(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNINIT(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FNSETPM(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FLD_RM80(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FUCOMI(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FCOMI(const X86::Instruction&) { TODO_INSN(); }
+void SoftCPU::FSTP_RM80(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FADD_RM64(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FMUL_RM64(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::FCOM_RM64(const X86::Instruction&) { TODO_INSN(); }