1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibX86: Correct CVTSS2SI's register signature

This was annotated the wrong way around.
This commit is contained in:
Hendiadyoin1 2022-04-05 12:24:42 +02:00 committed by Andreas Kling
parent 7826729ab2
commit fd2af972ed
6 changed files with 6 additions and 6 deletions

View file

@ -127,7 +127,7 @@ private:
void CVTTPS2PI_mm1_xmm2m64(X86::Instruction const&);
void CVTTSS2SI_r32_xmm2m32(X86::Instruction const&);
void CVTPS2PI_xmm1_mm2m64(X86::Instruction const&);
void CVTSS2SI_xmm1_rm32(X86::Instruction const&);
void CVTSS2SI_r32_xmm2m32(X86::Instruction const&);
void UCOMISS_xmm1_xmm2m32(X86::Instruction const&);
void COMISS_xmm1_xmm2m32(X86::Instruction const&);
void MOVMSKPS_reg_xmm(X86::Instruction const&);