mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Enables block profiling in the UI on non x86 targets.
ARMv7 supports block profiling as well. So let's stop artificially limiting here.
This commit is contained in:
@ -134,7 +134,8 @@ namespace JitInterface
|
||||
void WriteProfileResults(const std::string& filename)
|
||||
{
|
||||
// Can't really do this with no jit core available
|
||||
#if _M_X86
|
||||
if (!jit)
|
||||
return;
|
||||
|
||||
std::vector<BlockStat> stats;
|
||||
stats.reserve(jit->GetBlockCache()->GetNumBlocks());
|
||||
@ -188,7 +189,6 @@ namespace JitInterface
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
bool HandleFault(uintptr_t access_address, SContext* ctx)
|
||||
{
|
||||
|
Reference in New Issue
Block a user