diff options
author | Mike Pall <mike> | 2011-12-12 23:11:31 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-12-12 23:11:49 +0100 |
commit | 1b0d64600485c0fcf53b34c1cb263b720a27b5ea (patch) | |
tree | 923efeaae65de8aaa13d732b37b0afc816d79a1a /src/lj_errmsg.h | |
parent | 10474987bd58a2183d848cc7ef40aa2d4e9125ba (diff) | |
download | luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.tar.gz luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.tar.bz2 luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.zip |
FFI: Add callback support for PPC.
Diffstat (limited to '')
-rw-r--r-- | src/lj_errmsg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index e9ad0451..4a4fec68 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h | |||
@@ -161,7 +161,7 @@ ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed") | |||
161 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") | 161 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") |
162 | ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS) | 162 | ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS) |
163 | ERRDEF(FFI_BADCBACK, "bad callback") | 163 | ERRDEF(FFI_BADCBACK, "bad callback") |
164 | #if LJ_TARGET_X86ORX64 | 164 | #if LJ_TARGET_X86ORX64 || LJ_TARGET_PPC |
165 | ERRDEF(FFI_CBACKOV, "too many callbacks") | 165 | ERRDEF(FFI_CBACKOV, "too many callbacks") |
166 | #else | 166 | #else |
167 | ERRDEF(FFI_CBACKOV, "no support for callbacks (yet)") | 167 | ERRDEF(FFI_CBACKOV, "no support for callbacks (yet)") |