re add error for unsupported JIT platforms

This commit is contained in:
RSDuck 2020-02-04 18:50:16 +01:00
parent 0d83e98e04
commit 3173e6e25d
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"