diff options
author | Mike Pall <mike> | 2014-12-15 02:27:27 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2014-12-15 02:27:27 +0100 |
commit | 881f48f9808a950f8e046a3b299db0269506a87d (patch) | |
tree | 43584223f3b77d77af5a3515b3191c21fd012f01 /src/lj_meta.c | |
parent | b93b624ad88a9455cb3f12db93a9c5e153ff8a62 (diff) | |
download | luajit-881f48f9808a950f8e046a3b299db0269506a87d.tar.gz luajit-881f48f9808a950f8e046a3b299db0269506a87d.tar.bz2 luajit-881f48f9808a950f8e046a3b299db0269506a87d.zip |
Cleanup of frame handling. No functional changes.
Diffstat (limited to 'src/lj_meta.c')
-rw-r--r-- | src/lj_meta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_meta.c b/src/lj_meta.c index dea456f2..9c11dd86 100644 --- a/src/lj_meta.c +++ b/src/lj_meta.c | |||
@@ -84,7 +84,7 @@ int lj_meta_tailcall(lua_State *L, cTValue *tv) | |||
84 | top->u32.lo = LJ_CONT_TAILCALL; | 84 | top->u32.lo = LJ_CONT_TAILCALL; |
85 | setframe_pc(top, pc); | 85 | setframe_pc(top, pc); |
86 | setframe_gc(top+1, obj2gco(L)); /* Dummy frame object. */ | 86 | setframe_gc(top+1, obj2gco(L)); /* Dummy frame object. */ |
87 | setframe_ftsz(top+1, (int)((char *)(top+2) - (char *)base) + FRAME_CONT); | 87 | setframe_ftsz(top+1, ((char *)(top+2) - (char *)base) + FRAME_CONT); |
88 | L->base = L->top = top+2; | 88 | L->base = L->top = top+2; |
89 | /* | 89 | /* |
90 | ** before: [old_mo|PC] [... ...] | 90 | ** before: [old_mo|PC] [... ...] |