Merge pull request #2849 from lioncash/cond

JitInterface: Fix null checking in GetProfileResults
This commit is contained in:
flacs 2015-08-15 00:59:19 +02:00
commit d8d62336b5

View file

@ -133,15 +133,15 @@ namespace JitInterface
void GetProfileResults(ProfileStats* prof_stats)
{
// Can't really do this with no jit core available
if (!jit)
return;
prof_stats->cost_sum = 0;
prof_stats->timecost_sum = 0;
prof_stats->block_stats.clear();
prof_stats->block_stats.reserve(jit->GetBlockCache()->GetNumBlocks());
// Can't really do this with no jit core available
if (!jit)
return;
Core::EState old_state = Core::GetState();
if (old_state == Core::CORE_RUN)
Core::SetState(Core::CORE_PAUSE);