Skip to content

Commit

Permalink
Merge pull request #18305 from unknownbrackets/x86-ir-vcmp
Browse files Browse the repository at this point in the history
x86jit: Fix IR vcmp all bit
  • Loading branch information
hrydgard committed Oct 4, 2023
2 parents 4d5a671 + f1a9e39 commit 76f0c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/MIPS/x86/X64IRCompFPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ void X64JitBackend::CompIR_FCompare(IRInst inst) {
OR(32, regs_.R(IRREG_VFPU_CC), Imm8(0x10));

// Next up, the "all" bit.
CMP(32, regs_.R(IRREG_VFPU_CC), Imm8(0xF));
CMP(32, regs_.R(IRREG_VFPU_CC), Imm8(0x1F));
SETcc(CC_E, R(SCRATCH1));
SHL(32, R(SCRATCH1), Imm8(5));
OR(32, regs_.R(IRREG_VFPU_CC), R(SCRATCH1));
Expand Down

0 comments on commit 76f0c6c

Please sign in to comment.