aboutsummaryrefslogtreecommitdiff
path: root/src/lj_asm.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lj_asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c
index 9b17421e..60be4337 100644
--- a/src/lj_asm.c
+++ b/src/lj_asm.c
@@ -1833,7 +1833,7 @@ void lj_asm_trace(jit_State *J, GCtrace *T)
1833 1833
1834 /* Ensure an initialized instruction beyond the last one for HIOP checks. */ 1834 /* Ensure an initialized instruction beyond the last one for HIOP checks. */
1835 J->cur.nins = lj_ir_nextins(J); 1835 J->cur.nins = lj_ir_nextins(J);
1836 J->cur.ir[J->cur.nins].o = IR_NOP; 1836 lj_ir_nop(&J->cur.ir[J->cur.nins]);
1837 1837
1838 /* Setup initial state. Copy some fields to reduce indirections. */ 1838 /* Setup initial state. Copy some fields to reduce indirections. */
1839 as->J = J; 1839 as->J = J;