diff options
author | Mike Pall <mike> | 2014-12-20 00:59:16 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2014-12-20 01:48:00 +0100 |
commit | 5cb6e2eaaf860045daa30208b21ae6aa88a0503c (patch) | |
tree | b0b4c4edfc1a9a0c3f51efbd3c36580447eaa509 /src/lj_api.c | |
parent | 6e9145a882ea70fe438d59959ac4e65481fe5e85 (diff) | |
download | luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.tar.gz luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.tar.bz2 luajit-5cb6e2eaaf860045daa30208b21ae6aa88a0503c.zip |
Cleanup of TValue setters. No functional changes.
Diffstat (limited to 'src/lj_api.c')
-rw-r--r-- | src/lj_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_api.c b/src/lj_api.c index 03be80f9..4a7809bc 100644 --- a/src/lj_api.c +++ b/src/lj_api.c | |||
@@ -1101,7 +1101,7 @@ LUA_API int lua_yield(lua_State *L, int nresults) | |||
1101 | top->u64 = cframe_multres(cf); | 1101 | top->u64 = cframe_multres(cf); |
1102 | setcont(top+1, lj_cont_hook); | 1102 | setcont(top+1, lj_cont_hook); |
1103 | setframe_pc(top+1, cframe_pc(cf)-1); | 1103 | setframe_pc(top+1, cframe_pc(cf)-1); |
1104 | setframe_gc(top+2, obj2gco(L)); | 1104 | setframe_gc(top+2, obj2gco(L), LJ_TTHREAD); |
1105 | setframe_ftsz(top+2, ((char *)(top+3)-(char *)L->base)+FRAME_CONT); | 1105 | setframe_ftsz(top+2, ((char *)(top+3)-(char *)L->base)+FRAME_CONT); |
1106 | L->top = L->base = top+3; | 1106 | L->top = L->base = top+3; |
1107 | #if LJ_TARGET_X64 | 1107 | #if LJ_TARGET_X64 |