diff options
author | Mike Pall <mike> | 2009-12-27 17:42:41 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2009-12-27 17:42:41 +0100 |
commit | bc470637081979939698413ca108372e672d3b48 (patch) | |
tree | 6559f76ea898aba5c263c8ab56f63eaa2f6480ff /src/lj_state.h | |
parent | 690760aa3853e63331f46e40c8276d9f5939261d (diff) | |
download | luajit-bc470637081979939698413ca108372e672d3b48.tar.gz luajit-bc470637081979939698413ca108372e672d3b48.tar.bz2 luajit-bc470637081979939698413ca108372e672d3b48.zip |
Use fastcall for remaining 1-arg/2-arg calls from interpreter.
Simplifies conversion to x64 calling conventions.
Diffstat (limited to 'src/lj_state.h')
-rw-r--r-- | src/lj_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_state.h b/src/lj_state.h index 4e4185c0..5a34e067 100644 --- a/src/lj_state.h +++ b/src/lj_state.h | |||
@@ -16,8 +16,8 @@ | |||
16 | 16 | ||
17 | LJ_FUNC void lj_state_relimitstack(lua_State *L); | 17 | LJ_FUNC void lj_state_relimitstack(lua_State *L); |
18 | LJ_FUNC void lj_state_shrinkstack(lua_State *L, MSize used); | 18 | LJ_FUNC void lj_state_shrinkstack(lua_State *L, MSize used); |
19 | LJ_FUNCA void lj_state_growstack(lua_State *L, MSize need); | 19 | LJ_FUNCA void LJ_FASTCALL lj_state_growstack(lua_State *L, MSize need); |
20 | LJ_FUNC void lj_state_growstack1(lua_State *L); | 20 | LJ_FUNC void LJ_FASTCALL lj_state_growstack1(lua_State *L); |
21 | 21 | ||
22 | static LJ_AINLINE void lj_state_checkstack(lua_State *L, MSize need) | 22 | static LJ_AINLINE void lj_state_checkstack(lua_State *L, MSize need) |
23 | { | 23 | { |