mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -1133,7 +1133,7 @@ void SoftFPU::FNINIT(const X86::Instruction&)
|
|||
m_fpu_ds = 0;
|
||||
|
||||
m_fpu_iop = 0;
|
||||
};
|
||||
}
|
||||
void SoftFPU::FNCLEX(const X86::Instruction&)
|
||||
{
|
||||
m_fpu_error_invalid = 0;
|
||||
|
@ -1718,7 +1718,7 @@ void SoftFPU::MOVD_mm1_rm32(const X86::Instruction& insn)
|
|||
// upper half is zeroed out
|
||||
mmx_set(mmx_index, { .raw = insn.modrm().read32(m_cpu, insn).value() });
|
||||
mmx_common();
|
||||
};
|
||||
}
|
||||
void SoftFPU::MOVD_rm32_mm2(const X86::Instruction& insn)
|
||||
{
|
||||
VERIFY(!insn.has_operand_size_override_prefix()); /* SSE2 */
|
||||
|
@ -1727,7 +1727,7 @@ void SoftFPU::MOVD_rm32_mm2(const X86::Instruction& insn)
|
|||
insn.modrm().write32(m_cpu, insn,
|
||||
shadow_wrap_as_initialized(static_cast<u32>(mmx_get(mmx_index).raw)));
|
||||
mmx_common();
|
||||
};
|
||||
}
|
||||
|
||||
void SoftFPU::MOVQ_mm1_mm2m64(const X86::Instruction& insn)
|
||||
{
|
||||
|
@ -1757,8 +1757,8 @@ void SoftFPU::MOVQ_mm1m64_mm2(const X86::Instruction& insn)
|
|||
}
|
||||
mmx_common();
|
||||
}
|
||||
void SoftFPU::MOVQ_mm1_rm64(const X86::Instruction&) { TODO_INSN(); }; // long mode
|
||||
void SoftFPU::MOVQ_rm64_mm2(const X86::Instruction&) { TODO_INSN(); }; // long mode
|
||||
void SoftFPU::MOVQ_mm1_rm64(const X86::Instruction&) { TODO_INSN(); } // long mode
|
||||
void SoftFPU::MOVQ_rm64_mm2(const X86::Instruction&) { TODO_INSN(); } // long mode
|
||||
|
||||
// EMPTY MMX STATE
|
||||
void SoftFPU::EMMS(const X86::Instruction&)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue