aboutsummaryrefslogtreecommitdiff
path: root/src/lj_asm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_asm.c')
-rw-r--r--src/lj_asm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c
index a8cb3dd0..bff6c9bc 100644
--- a/src/lj_asm.c
+++ b/src/lj_asm.c
@@ -3045,8 +3045,8 @@ static void asm_tail_sync(ASMState *as)
3045 } 3045 }
3046 emit_movmroi(as, RID_BASE, ofs+4, irt_toitype(ir->t)); 3046 emit_movmroi(as, RID_BASE, ofs+4, irt_toitype(ir->t));
3047 } 3047 }
3048 } else if (s > secondbase) { 3048 } else {
3049 emit_movmroi(as, RID_BASE, ofs+4, LJ_TNIL); 3049 lua_assert(!(s > secondbase));
3050 } 3050 }
3051 checkmclim(as); 3051 checkmclim(as);
3052 } 3052 }