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_gc.c | |
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_gc.c')
-rw-r--r-- | src/lj_gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_gc.c b/src/lj_gc.c index 5c9d2bcb..55640521 100644 --- a/src/lj_gc.c +++ b/src/lj_gc.c | |||
@@ -613,7 +613,7 @@ static size_t gc_onestep(lua_State *L) | |||
613 | } | 613 | } |
614 | 614 | ||
615 | /* Perform a limited amount of incremental GC steps. */ | 615 | /* Perform a limited amount of incremental GC steps. */ |
616 | int lj_gc_step(lua_State *L) | 616 | int LJ_FASTCALL lj_gc_step(lua_State *L) |
617 | { | 617 | { |
618 | global_State *g = G(L); | 618 | global_State *g = G(L); |
619 | MSize lim; | 619 | MSize lim; |