diff options
Diffstat (limited to 'src/lj_asm.c')
-rw-r--r-- | src/lj_asm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c index 3c0575ab..145129df 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c | |||
@@ -159,6 +159,8 @@ IRFLDEF(FLOFS) | |||
159 | 159 | ||
160 | #if LJ_TARGET_X86ORX64 | 160 | #if LJ_TARGET_X86ORX64 |
161 | #include "lj_emit_x86.h" | 161 | #include "lj_emit_x86.h" |
162 | #elif LJ_TARGET_ARM | ||
163 | #include "lj_emit_arm.h" | ||
162 | #else | 164 | #else |
163 | #error "Missing instruction emitter for target CPU" | 165 | #error "Missing instruction emitter for target CPU" |
164 | #endif | 166 | #endif |
@@ -1098,6 +1100,8 @@ static void asm_loop(ASMState *as) | |||
1098 | 1100 | ||
1099 | #if LJ_TARGET_X86ORX64 | 1101 | #if LJ_TARGET_X86ORX64 |
1100 | #include "lj_asm_x86.h" | 1102 | #include "lj_asm_x86.h" |
1103 | #elif LJ_TARGET_ARM | ||
1104 | #include "lj_asm_arm.h" | ||
1101 | #else | 1105 | #else |
1102 | #error "Missing instruction emitter for target CPU" | 1106 | #error "Missing instruction emitter for target CPU" |
1103 | #endif | 1107 | #endif |