mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-02 01:26:31 +00:00
emit_x64_data_processing: EmitSignedDiv64: Applease MSVC
This commit is contained in:
@@ -1218,7 +1218,7 @@ void EmitX64::EmitSignedDiv64(EmitContext& ctx, IR::Inst* inst) {
|
||||
code.xor_(eax, eax);
|
||||
code.test(divisor, divisor);
|
||||
code.jz(end);
|
||||
code.cmp(divisor, -1);
|
||||
code.cmp(divisor, 0xffffffff); // is sign extended
|
||||
code.jne(ok);
|
||||
code.mov(rax, 0x8000000000000000);
|
||||
code.cmp(dividend, rax);
|
||||
|
||||
Reference in New Issue
Block a user