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_func.c | |
parent | 690760aa3853e63331f46e40c8276d9f5939261d (diff) | |
download | luajit2-bc470637081979939698413ca108372e672d3b48.tar.gz |
Use fastcall for remaining 1-arg/2-arg calls from interpreter.
Simplifies conversion to x64 calling conventions.
Diffstat (limited to 'src/lj_func.c')
-rw-r--r-- | src/lj_func.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_func.c b/src/lj_func.c index 6616eff6..af4f424e 100644 --- a/src/lj_func.c +++ b/src/lj_func.c @@ -103,7 +103,7 @@ static GCupval *func_finduv(lua_State *L, TValue *slot) } /* Close all open upvalues pointing to some stack level or above. */ -void lj_func_closeuv(lua_State *L, TValue *level) +void LJ_FASTCALL lj_func_closeuv(lua_State *L, TValue *level) { GCupval *uv; global_State *g = G(L); |