diff options
author | Mike Pall <mike> | 2010-01-25 19:51:52 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-01-25 19:51:52 +0100 |
commit | 47f1bc80d829e472f898609e2c44022f838a3eb3 (patch) | |
tree | d0902f9c99e6cca1ea12f370da96ab0de8f0e912 /src/lj_record.c | |
parent | 055396a69d9588bf77227f516bf86ff080abdcc4 (diff) | |
download | luajit-47f1bc80d829e472f898609e2c44022f838a3eb3.tar.gz luajit-47f1bc80d829e472f898609e2c44022f838a3eb3.tar.bz2 luajit-47f1bc80d829e472f898609e2c44022f838a3eb3.zip |
Use dedicated type for snapshot map entry.
Preparatory work for compressed snapshots.
Diffstat (limited to 'src/lj_record.c')
-rw-r--r-- | src/lj_record.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_record.c b/src/lj_record.c index 5085d735..329cbdc5 100644 --- a/src/lj_record.c +++ b/src/lj_record.c | |||
@@ -2158,7 +2158,7 @@ static const BCIns *rec_setup_root(jit_State *J) | |||
2158 | static void rec_setup_side(jit_State *J, Trace *T) | 2158 | static void rec_setup_side(jit_State *J, Trace *T) |
2159 | { | 2159 | { |
2160 | SnapShot *snap = &T->snap[J->exitno]; | 2160 | SnapShot *snap = &T->snap[J->exitno]; |
2161 | IRRef2 *map = &T->snapmap[snap->mapofs]; | 2161 | SnapEntry *map = &T->snapmap[snap->mapofs]; |
2162 | BCReg s, nslots = snap->nslots; | 2162 | BCReg s, nslots = snap->nslots; |
2163 | BloomFilter seen = 0; | 2163 | BloomFilter seen = 0; |
2164 | for (s = 0; s < nslots; s++) { | 2164 | for (s = 0; s < nslots; s++) { |