diff options
author | Mike Pall <mike> | 2010-08-27 17:20:16 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-08-27 17:28:07 +0200 |
commit | a8d23e84e6e48637adb14295b098eb7800a19b0a (patch) | |
tree | 921fda7e247b51d4d0811d8645fbcf7a6f18c4a1 /src/lib_jit.c | |
parent | 96b60d5ef378c59181906dd50af61b2d3acf9c34 (diff) | |
download | luajit-a8d23e84e6e48637adb14295b098eb7800a19b0a.tar.gz luajit-a8d23e84e6e48637adb14295b098eb7800a19b0a.tar.bz2 luajit-a8d23e84e6e48637adb14295b098eb7800a19b0a.zip |
PPC: Add build rules and preprocessed skeleton for PPCSPE target.
Diffstat (limited to 'src/lib_jit.c')
-rw-r--r-- | src/lib_jit.c | 4 |
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 | ||