mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-03-18 10:44:38 +01:00
emit_x64_vector_floating_point: Remove unnecessary double jump in HandleNaNs
This commit is contained in:
parent
c778c7b868
commit
a0d6f0de57
|
|
@ -86,8 +86,7 @@ static void HandleNaNs(BlockOfCode& code, EmitContext& ctx, std::array<Xbyak::Xm
|
|||
Xbyak::Label end;
|
||||
Xbyak::Label nan;
|
||||
|
||||
code.jz(end);
|
||||
code.jmp(nan, code.T_NEAR);
|
||||
code.jnz(nan, code.T_NEAR);
|
||||
code.L(end);
|
||||
|
||||
code.SwitchToFarCode();
|
||||
|
|
|
|||
Loading…
Reference in a new issue