summaryrefslogtreecommitdiff
path: root/src/lib_jit.c
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-25 18:50:24 +0100
committerMike Pall <mike>2011-01-25 18:50:24 +0100
commited6c895ae56288b6982d1651c4ea638452c9e99b (patch)
treed6cfd052707979ce8d071c05c457872e130473db /src/lib_jit.c
parent705f593ffc91ecfc42f0de81b86fe4a6c3097958 (diff)
downloadluajit-ed6c895ae56288b6982d1651c4ea638452c9e99b.tar.gz
luajit-ed6c895ae56288b6982d1651c4ea638452c9e99b.tar.bz2
luajit-ed6c895ae56288b6982d1651c4ea638452c9e99b.zip
ARM: Add ARM target architecture selection (disabled).
Diffstat (limited to 'src/lib_jit.c')
-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 ed0a581a..513a1c37 100644
--- a/src/lib_jit.c
+++ b/src/lib_jit.c
@@ -556,6 +556,8 @@ static uint32_t jit_cpudetect(lua_State *L)
556 luaL_error(L, "CPU does not support SSE2 (recompile without -DLUAJIT_CPU_SSE2)"); 556 luaL_error(L, "CPU does not support SSE2 (recompile without -DLUAJIT_CPU_SSE2)");
557#endif 557#endif
558#endif 558#endif
559#elif LJ_TARGET_ARM
560 /* NYI */
559#elif LJ_TARGET_PPC 561#elif LJ_TARGET_PPC
560 /* Nothing to do. */ 562 /* Nothing to do. */
561#else 563#else