Skip to content

Commit 38734e6

Browse files
committed
JitCache: Disable fast block map on iOS
1 parent a08b069 commit 38734e6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Source/Core/Core/PowerPC/JitCommon/JitCache.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,12 @@ void JitBaseBlockCache::Clear()
8686
m_block_map_arena.GrabSHMSegment(FAST_BLOCK_MAP_SIZE, "dolphin-emu-jitblock");
8787
}
8888

89+
#ifndef IPHONEOS
8990
m_fast_block_map =
9091
reinterpret_cast<JitBlock**>(m_block_map_arena.CreateView(0, FAST_BLOCK_MAP_SIZE));
92+
#else
93+
m_fast_block_map = nullptr;
94+
#endif
9195

9296
if (m_fast_block_map)
9397
{

0 commit comments

Comments
 (0)