emit_x64_vector_floating_point: Remove unnecessary double jump in HandleNaNs

This commit is contained in:
MerryMage 2018-07-26 09:42:34 +01:00
parent c778c7b868
commit a0d6f0de57

View file

@ -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();