mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 07:28:09 +01:00
emit_x64_vector_floating_point: Remove unnecessary double jump in HandleNaNs
This commit is contained in:
parent
c778c7b868
commit
a0d6f0de57
1 changed files with 1 additions and 2 deletions
|
|
@ -86,8 +86,7 @@ static void HandleNaNs(BlockOfCode& code, EmitContext& ctx, std::array<Xbyak::Xm
|
||||||
Xbyak::Label end;
|
Xbyak::Label end;
|
||||||
Xbyak::Label nan;
|
Xbyak::Label nan;
|
||||||
|
|
||||||
code.jz(end);
|
code.jnz(nan, code.T_NEAR);
|
||||||
code.jmp(nan, code.T_NEAR);
|
|
||||||
code.L(end);
|
code.L(end);
|
||||||
|
|
||||||
code.SwitchToFarCode();
|
code.SwitchToFarCode();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue