Dynarmic Interface: don't clear cache if JIT has not been created.

This commit is contained in:
Fernando Sahmkow 2020-04-03 14:11:04 -04:00
parent ad92865497
commit 7b44187fd2
2 changed files with 6 additions and 0 deletions

View File

@ -200,6 +200,9 @@ void ARM_Dynarmic_32::PrepareReschedule() {
}
void ARM_Dynarmic_32::ClearInstructionCache() {
if (!jit) {
return;
}
jit->ClearCache();
}

View File

@ -301,6 +301,9 @@ void ARM_Dynarmic_64::PrepareReschedule() {
}
void ARM_Dynarmic_64::ClearInstructionCache() {
if (!jit) {
return;
}
jit->ClearCache();
}