JIT: set clear_cache_asap to false when clearing the cache

Would probably result in continual cache-clearing if the stack overflow code
in the BLR optimizations triggers.
This commit is contained in:
Fiora 2014-10-03 20:03:18 -07:00
parent 16d3604211
commit 17c56b58ab
1 changed files with 1 additions and 0 deletions

View File

@ -223,6 +223,7 @@ void Jit64::ClearCache()
trampolines.ClearCodeSpace();
farcode.ClearCodeSpace();
ClearCodeSpace();
m_clear_cache_asap = false;
}
void Jit64::Shutdown()