diff options
author | Mike Pall <mike> | 2012-07-02 22:47:20 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-07-02 22:47:20 +0200 |
commit | 0688de5483c04207220223cbb16a3869849129ab (patch) | |
tree | 619857d1a5d1646cb06448aefcb7c962ae6b7b42 /src/lj_snap.c | |
parent | 5d0115ef8df093ce9737d00ad35d2fcc693df83f (diff) | |
download | luajit-0688de5483c04207220223cbb16a3869849129ab.tar.gz luajit-0688de5483c04207220223cbb16a3869849129ab.tar.bz2 luajit-0688de5483c04207220223cbb16a3869849129ab.zip |
Add IR_PVAL instruction for non-slot parent links.
Diffstat (limited to '')
-rw-r--r-- | src/lj_snap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_snap.c b/src/lj_snap.c index c04d622d..11d7ad0c 100644 --- a/src/lj_snap.c +++ b/src/lj_snap.c | |||
@@ -339,6 +339,8 @@ IRIns *lj_snap_regspmap(GCtrace *T, SnapNo snapno, IRIns *ir) | |||
339 | } | 339 | } |
340 | } else if (LJ_SOFTFP && ir->o == IR_HIOP) { | 340 | } else if (LJ_SOFTFP && ir->o == IR_HIOP) { |
341 | ref++; | 341 | ref++; |
342 | } else if (ir->o == IR_PVAL) { | ||
343 | ref = ir->op1 + REF_BIAS; | ||
342 | } else { | 344 | } else { |
343 | break; | 345 | break; |
344 | } | 346 | } |