mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-15 22:53:47 +00:00
PPU Precompilation: Abort compilation as soon as possible on Emu.Stop()
This commit is contained in:
parent
87411da95f
commit
4d24ba1f35
@ -3741,6 +3741,11 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
|
||||
// Allocate "core"
|
||||
std::lock_guard jlock(g_fxo->get<jit_core_allocator>().sem);
|
||||
|
||||
if (Emu.IsStopped())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
ppu_log.warning("LLVM: Compiling module %s%s", cache_path, obj_name);
|
||||
|
||||
// Use another JIT instance
|
||||
|
Loading…
Reference in New Issue
Block a user