From b0cc02658b43c0d6ba40f36a707709691dcaf408 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 15 Aug 2015 13:01:26 +0200 Subject: [PATCH] CachedInterpreter: avoid uninitialized value (The CachedInterpreter backend does not support block linking yet.) --- Source/Core/Core/PowerPC/CachedInterpreter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/PowerPC/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter.cpp index d2e19c5f81..bd07c27f37 100644 --- a/Source/Core/Core/PowerPC/CachedInterpreter.cpp +++ b/Source/Core/Core/PowerPC/CachedInterpreter.cpp @@ -10,6 +10,8 @@ void CachedInterpreter::Init() { m_code.reserve(CODE_SIZE / sizeof(Instruction)); + jo.enableBlocklink = false; + JitBaseBlockCache::Init(); code_block.m_stats = &js.st;