mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Jit: Add missing call to InitBLROptimization for extra performance
This commit is contained in:
parent
68aab70c75
commit
8943a9a369
2 changed files with 4 additions and 0 deletions
|
@ -276,6 +276,8 @@ void Jit64::Init()
|
|||
m_const_pool.Init(AllocChildCodeSpace(constpool_size), constpool_size);
|
||||
ResetCodePtr();
|
||||
|
||||
InitBLROptimization();
|
||||
|
||||
m_stack_guard = nullptr;
|
||||
|
||||
blocks.Init();
|
||||
|
|
|
@ -66,6 +66,8 @@ void JitArm64::Init()
|
|||
code_block.m_gpa = &js.gpa;
|
||||
code_block.m_fpa = &js.fpa;
|
||||
|
||||
InitBLROptimization();
|
||||
|
||||
GenerateAsm();
|
||||
|
||||
ResetFreeMemoryRanges();
|
||||
|
|
Loading…
Add table
Reference in a new issue