mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
x64Emitter: Assert when using an invalid POP instead of generating an INT3
This commit is contained in:
@ -666,7 +666,7 @@ void XEmitter::POP(int /*bits*/, const OpArg ®)
|
|||||||
if (reg.IsSimpleReg())
|
if (reg.IsSimpleReg())
|
||||||
POP(reg.GetSimpleReg());
|
POP(reg.GetSimpleReg());
|
||||||
else
|
else
|
||||||
INT3();
|
_assert_msg_(DYNA_REC, 0, "POP - Unsupported encoding");
|
||||||
}
|
}
|
||||||
|
|
||||||
void XEmitter::BSWAP(int bits, X64Reg reg)
|
void XEmitter::BSWAP(int bits, X64Reg reg)
|
||||||
|
Reference in New Issue
Block a user