Add AArch64 JIT recompiler to wxWidgets UI.

This also fixes an issue where it would show the ARMv7 JIT recompiler on AArch64, also the issue of showing the now non-existant ARM JITIL.
Also fixes an issue where it would show the x86 JIT recompilers on a non ARM platform.
This commit is contained in:
Ryan Houdek 2014-10-12 22:49:07 -05:00
parent 26fc3c168a
commit 0a0183ee44
1 changed files with 5 additions and 4 deletions

View File

@ -62,12 +62,13 @@ struct CPUCore
};
const CPUCore CPUCores[] = {
{0, wxTRANSLATE("Interpreter (VERY slow)")},
#ifdef _M_ARM
{3, wxTRANSLATE("Arm JIT (experimental)")},
{4, wxTRANSLATE("Arm JITIL (experimental)")},
#else
#ifdef _M_X86_64
{1, wxTRANSLATE("JIT Recompiler (recommended)")},
{2, wxTRANSLATE("JITIL Recompiler (slower, experimental)")},
#elif defined(_M_ARM_32)
{3, wxTRANSLATE("Arm JIT (experimental)")},
#elif defined(_M_ARM_64)
{4, wxTRANSLATE("Arm64 JIT (experimental)")},
#endif
};