diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-03-25 15:23:46 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-03-25 15:23:49 -0400 |
| commit | efcdb3debbf217a4b7be3252655032bf0aed528b (patch) | |
| tree | d99dce6b12917d6325fbcce8e615e0c0a91224c1 /Source/Core | |
| parent | 5c83e18fbd3606587e71a7f1cc54e4cf6473609f (diff) | |
JitArm64/JitAsm: Remove usages of the JIT global
With this, the entire ARM JIT makes no use of the JIT global whatsoever.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/JitArm64/JitAsm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/JitArm64/JitAsm.cpp b/Source/Core/Core/PowerPC/JitArm64/JitAsm.cpp index afb7a4031b..8c62230eb7 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitAsm.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitAsm.cpp @@ -97,7 +97,7 @@ void JitArm64::GenerateAsm() ARM64Reg block = X30; ORRI2R(pc_masked, WZR, JitBaseBlockCache::FAST_BLOCK_MAP_MASK << 3); AND(pc_masked, pc_masked, DISPATCHER_PC, ArithOption(DISPATCHER_PC, ST_LSL, 1)); - MOVP2R(cache_base, g_jit->GetBlockCache()->GetFastBlockMap()); + MOVP2R(cache_base, GetBlockCache()->GetFastBlockMap()); LDR(block, cache_base, EncodeRegTo64(pc_masked)); FixupBranch not_found = CBZ(block); |
