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 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