aboutsummaryrefslogtreecommitdiff
path: root/src/lib_jit.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib_jit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib_jit.c b/src/lib_jit.c
index 21a72a94..7a810ae0 100644
--- a/src/lib_jit.c
+++ b/src/lib_jit.c
@@ -695,6 +695,8 @@ static uint32_t jit_cpudetect(lua_State *L)
695 ver >= 60 ? JIT_F_ARMV6_ : 0; 695 ver >= 60 ? JIT_F_ARMV6_ : 0;
696 flags |= LJ_ARCH_HASFPU == 0 ? 0 : ver >= 70 ? JIT_F_VFPV3 : JIT_F_VFPV2; 696 flags |= LJ_ARCH_HASFPU == 0 ? 0 : ver >= 70 ? JIT_F_VFPV3 : JIT_F_VFPV2;
697#endif 697#endif
698#elif LJ_TARGET_ARM64
699 /* No optional CPU features to detect (for now). */
698#elif LJ_TARGET_PPC 700#elif LJ_TARGET_PPC
699#if LJ_HASJIT 701#if LJ_HASJIT
700#if LJ_ARCH_SQRT 702#if LJ_ARCH_SQRT