UserspaceEmulator: Remove some silly semicolons

This commit is contained in:
Nico Weber 2020-08-11 15:02:06 -04:00 committed by Andreas Kling
parent c6ee6c0b42
commit f8084cc083
Notes: sideshowbarker 2024-07-19 03:53:10 +09:00

View file

@ -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(); }