Removed exception throw when instruction is not found.

This commit is contained in:
Jean-Philip Desjardins 2015-05-03 03:05:54 -04:00
parent 5c87149816
commit ccb54cc8e6

View File

@ -105,5 +105,7 @@ void CMIPSInstructionFactory::BranchLikely(Jitter::CONDITION condition)
void CMIPSInstructionFactory::Illegal()
{
#ifdef _DEBUG
throw std::runtime_error("Illegal instruction.");
#endif
}