diff options
author | Mike Pall <mike> | 2012-01-23 22:20:28 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2012-01-23 22:24:11 +0100 |
commit | 5bed11e6b4c2bbf0cbec0f00efe998289236b217 (patch) | |
tree | 5ed76367d5157df37b358a5874d34a21dc7d60b0 /src/lib_base.c | |
parent | 7d2774e4c5ee7c649ccb41f75bfbbb1e7f370a96 (diff) | |
download | luajit-5bed11e6b4c2bbf0cbec0f00efe998289236b217.tar.gz luajit-5bed11e6b4c2bbf0cbec0f00efe998289236b217.tar.bz2 luajit-5bed11e6b4c2bbf0cbec0f00efe998289236b217.zip |
MIPS: Add interpreter. Enable MIPS build rules.
Diffstat (limited to 'src/lib_base.c')
-rw-r--r-- | src/lib_base.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib_base.c b/src/lib_base.c index f8975986..1f8bb5fd 100644 --- a/src/lib_base.c +++ b/src/lib_base.c | |||
@@ -591,8 +591,10 @@ LJLIB_NOREG LJLIB_ASM(coroutine_wrap_aux) | |||
591 | 591 | ||
592 | /* Inline declarations. */ | 592 | /* Inline declarations. */ |
593 | LJ_ASMF void lj_ff_coroutine_wrap_aux(void); | 593 | LJ_ASMF void lj_ff_coroutine_wrap_aux(void); |
594 | #if !(LJ_TARGET_MIPS && defined(ljamalg_c)) | ||
594 | LJ_FUNCA_NORET void LJ_FASTCALL lj_ffh_coroutine_wrap_err(lua_State *L, | 595 | LJ_FUNCA_NORET void LJ_FASTCALL lj_ffh_coroutine_wrap_err(lua_State *L, |
595 | lua_State *co); | 596 | lua_State *co); |
597 | #endif | ||
596 | 598 | ||
597 | /* Error handler, called from assembler VM. */ | 599 | /* Error handler, called from assembler VM. */ |
598 | void LJ_FASTCALL lj_ffh_coroutine_wrap_err(lua_State *L, lua_State *co) | 600 | void LJ_FASTCALL lj_ffh_coroutine_wrap_err(lua_State *L, lua_State *co) |