aboutsummaryrefslogtreecommitdiff
path: root/src/lj_gc.c
diff options
context:
space:
mode:
authorMike Pall <mike>2009-12-27 17:42:41 +0100
committerMike Pall <mike>2009-12-27 17:42:41 +0100
commitbc470637081979939698413ca108372e672d3b48 (patch)
tree6559f76ea898aba5c263c8ab56f63eaa2f6480ff /src/lj_gc.c
parent690760aa3853e63331f46e40c8276d9f5939261d (diff)
downloadluajit-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.c2
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. */
616int lj_gc_step(lua_State *L) 616int 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;