re add error for unsupported JIT platforms

This commit is contained in:
RSDuck 2020-02-04 18:50:16 +01:00
parent 899cf97c51
commit 2dbb9840fb
1 changed files with 3 additions and 1 deletions

View File

@ -8,8 +8,10 @@
#include "ARMJIT_Internal.h"
#if defined(__x86_64__)
#include "ARMJIT_x64/ARMJIT_Compiler.h"
#else
#elif defined(__aarch64__)
#include "ARMJIT_A64/ARMJIT_Compiler.h"
#else
#error "The current target platform doesn't have a JIT backend"
#endif
#include "ARMInterpreter_ALU.h"