aboutsummaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2015-05-21 16:38:31 +0200
committerMike Pall <mike>2015-05-21 16:38:31 +0200
commit60fb3fe2b2f91b9e6f053004fd1118891a3e885f (patch)
tree4a56e2b39b2bd81a29609854695f539f3fa91cd7 /src/lj_jit.h
parent4a146cac9a00f5a1a7877db847ff5ba03e7b7256 (diff)
downloadluajit-60fb3fe2b2f91b9e6f053004fd1118891a3e885f.tar.gz
luajit-60fb3fe2b2f91b9e6f053004fd1118891a3e885f.tar.bz2
luajit-60fb3fe2b2f91b9e6f053004fd1118891a3e885f.zip
Fix table allocation bump optimization.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index db3d89bb..69656568 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -293,6 +293,7 @@ typedef struct ScEvEntry {
293/* Reverse bytecode map (IRRef -> PC). Only for selected instructions. */ 293/* Reverse bytecode map (IRRef -> PC). Only for selected instructions. */
294typedef struct RBCHashEntry { 294typedef struct RBCHashEntry {
295 MRef pc; /* Bytecode PC. */ 295 MRef pc; /* Bytecode PC. */
296 GCRef pt; /* Prototype. */
296 IRRef ref; /* IR reference. */ 297 IRRef ref; /* IR reference. */
297} RBCHashEntry; 298} RBCHashEntry;
298 299