aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lj_opt_dce.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_opt_dce.c b/src/lj_opt_dce.c
index be801894..fdfe9343 100644
--- a/src/lj_opt_dce.c
+++ b/src/lj_opt_dce.c
@@ -69,6 +69,7 @@ void lj_opt_dce(jit_State *J)
69 if ((J->flags & JIT_F_OPT_DCE)) { 69 if ((J->flags & JIT_F_OPT_DCE)) {
70 dce_marksnap(J); 70 dce_marksnap(J);
71 dce_propagate(J); 71 dce_propagate(J);
72 memset(J->bpropcache, 0, sizeof(J->bpropcache)); /* Invalidate cache. */
72 } 73 }
73} 74}
74 75