aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2015-05-19 02:25:16 +0200
committerMike Pall <mike>2015-05-19 02:25:16 +0200
commitbca5da8849fb3585be86ddb2463f3b6d3a9d63f3 (patch)
tree51229792ada12f700937f703557c169a1867789b /src
parentb82fc3ddc032dfc3da813cda9715d356975922e7 (diff)
downloadluajit-bca5da8849fb3585be86ddb2463f3b6d3a9d63f3.tar.gz
luajit-bca5da8849fb3585be86ddb2463f3b6d3a9d63f3.tar.bz2
luajit-bca5da8849fb3585be86ddb2463f3b6d3a9d63f3.zip
Fix for last commit.
Diffstat (limited to 'src')
-rw-r--r--src/lj_record.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_record.c b/src/lj_record.c
index 583f80aa..19eff723 100644
--- a/src/lj_record.c
+++ b/src/lj_record.c
@@ -1171,6 +1171,7 @@ static void rec_idx_bump(jit_State *J, RecordIndex *ix)
1171 if (tvisnil(o)) settabV(J->L, o, tpl); 1171 if (tvisnil(o)) settabV(J->L, o, tpl);
1172 } 1172 }
1173 lj_tab_resize(J->L, tpl, tb->asize, nhbits); 1173 lj_tab_resize(J->L, tpl, tb->asize, nhbits);
1174 node = noderef(tpl->node);
1174 hmask = tpl->hmask; 1175 hmask = tpl->hmask;
1175 for (i = 0; i <= hmask; i++) { 1176 for (i = 0; i <= hmask; i++) {
1176 /* This is safe, since template tables only hold immutable values. */ 1177 /* This is safe, since template tables only hold immutable values. */