CachedInterpreter: avoid uninitialized value

(The CachedInterpreter backend does not support block linking yet.)
This commit is contained in:
Tillmann Karras 2015-08-15 13:01:26 +02:00
parent b3ff66dc7a
commit b0cc02658b
1 changed files with 2 additions and 0 deletions

View File

@ -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;