From 77851edc1b1ae96c30d42791ca296febe5fa2d2b Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sat, 15 Feb 2014 20:41:42 -0600 Subject: [PATCH] Fix the arbitrary exits. We have to make sure that the block links are cleared entirely. --- Source/Core/Core/PowerPC/JitCommon/JitCache.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp index f9171d927e..8fb7bd471b 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitCache.cpp @@ -165,6 +165,7 @@ using namespace Gen; JitBlock &b = blocks[num_blocks]; b.invalid = false; b.originalAddress = em_address; + b.linkData.clear(); num_blocks++; //commit the current block return num_blocks - 1; }