diff options
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 |