mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
If the loop is never entered, then the jit is null.
This commit is contained in:
parent
b11f9e0405
commit
47685bef39
@ -1239,10 +1239,10 @@ extern void ppu_initialize(const ppu_module& info)
|
||||
return;
|
||||
}
|
||||
|
||||
if (jit_mod.vars.empty())
|
||||
{
|
||||
// Jit can be null if the loop doesn't ever enter.
|
||||
if (jit && jit_mod.vars.empty())
|
||||
{
|
||||
jit->fin();
|
||||
|
||||
// Get and install function addresses
|
||||
for (const auto& func : info.funcs)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user