summaryrefslogtreecommitdiff
path: root/src/lib_jit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib_jit.c')
-rw-r--r--src/lib_jit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib_jit.c b/src/lib_jit.c
index 4cabb2f7..bfceab62 100644
--- a/src/lib_jit.c
+++ b/src/lib_jit.c
@@ -543,10 +543,12 @@ static uint32_t jit_cpudetect(lua_State *L)
543 luaL_error(L, "CPU does not support SSE2 (recompile without -DLUAJIT_CPU_SSE2)"); 543 luaL_error(L, "CPU does not support SSE2 (recompile without -DLUAJIT_CPU_SSE2)");
544#endif 544#endif
545#endif 545#endif
546 UNUSED(L); 546#elif LJ_TARGET_PPC
547 /* Nothing to do. */
547#else 548#else
548#error "Missing CPU detection for this architecture" 549#error "Missing CPU detection for this architecture"
549#endif 550#endif
551 UNUSED(L);
550 return flags; 552 return flags;
551} 553}
552 554