mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibX86: Correctly name the first xmm argument
We were accidentally calling it a mm-register
This commit is contained in:
parent
f951849fd5
commit
3cae69a6c2
Notes:
sideshowbarker
2024-07-17 16:19:23 +09:00
Author: https://github.com/Hendiadyoin1 Commit: https://github.com/SerenityOS/serenity/commit/3cae69a6c2 Pull-request: https://github.com/SerenityOS/serenity/pull/13405
@ -1486,7 +1486,7 @@ void Instruction::to_string_internal(StringBuilder& builder, u32 origin, SymbolP
|
||||
auto append_mm = [&] { builder.appendff("mm{}", register_index()); };
|
||||
auto append_mmrm32 = [&] { builder.append(m_modrm.to_string_mm(*this)); };
|
||||
auto append_mmrm64 = [&] { builder.append(m_modrm.to_string_mm(*this)); };
|
||||
auto append_xmm = [&] { builder.appendff("mm{}", register_index()); };
|
||||
auto append_xmm = [&] { builder.appendff("xmm{}", register_index()); };
|
||||
auto append_xmmrm32 = [&] { builder.append(m_modrm.to_string_xmm(*this)); };
|
||||
auto append_xmmrm64 = [&] { builder.append(m_modrm.to_string_xmm(*this)); };
|
||||
auto append_xmmrm128 = [&] { builder.append(m_modrm.to_string_xmm(*this)); };
|
||||
|
Loading…
Reference in New Issue
Block a user