Skip to content

Commit

Permalink
PPU/LLVM: Use ExecuteFunction in ExecuteTillReturn
Browse files Browse the repository at this point in the history
  • Loading branch information
vlj committed Aug 26, 2015
1 parent f811923 commit b2ca9ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rpcs3/Emu/Cell/PPULLVMRecompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b2ca9ed

Please sign in to comment.