Merge pull request #1836 from FioraAeterna/catchillegalinst

JIT: catch illegal instruction errors
This commit is contained in:
Markus Wick 2015-01-06 23:10:46 +01:00
commit a2ec4d5f51

View File

@ -673,6 +673,11 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock *block, CodeBuffer *buffer, u32
num_inst++;
memset(&code[i], 0, sizeof(CodeOp));
GekkoOPInfo *opinfo = GetOpInfo(inst);
if (!opinfo)
{
PanicAlert("Invalid PowerPC opcode: %x.", inst.hex);
Crash();
}
code[i].opinfo = opinfo;
code[i].address = address;