mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
PPU/LLVM: Use ExecuteFunction in ExecuteTillReturn
This commit is contained in:
parent
f81192373f
commit
b2ca9edde2
1 changed files with 1 additions and 2 deletions
|
@ -764,8 +764,7 @@ u32 ppu_recompiler_llvm::CPUHybridDecoderRecompiler::ExecuteTillReturn(PPUThread
|
|||
return 0;
|
||||
case BranchType::FunctionCall: {
|
||||
execution_engine->m_tracer.Trace(Tracer::TraceType::CallFunction, ppu_state->PC, 0);
|
||||
const Executable *executable = execution_engine->m_recompilation_engine->GetExecutable(ppu_state->PC, true);
|
||||
(*executable)(ppu_state, 0);
|
||||
ExecuteFunction(ppu_state, 0);
|
||||
break;
|
||||
}
|
||||
case BranchType::LocalBranch:
|
||||
|
|
Loading…
Add table
Reference in a new issue