summaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-12-05 21:50:52 +0100
committerMike Pall <mike>2010-12-05 22:12:31 +0100
commit5a13fa69d95993fa68b12be4091f48b80844bdcf (patch)
tree73ec2ee4d64eec20245f198fde91eff9b3eadf35 /src/lj_jit.h
parentb1fb71fb981c464868e6bc669363658a98ecbd9e (diff)
downloadluajit-5a13fa69d95993fa68b12be4091f48b80844bdcf.tar.gz
luajit-5a13fa69d95993fa68b12be4091f48b80844bdcf.tar.bz2
luajit-5a13fa69d95993fa68b12be4091f48b80844bdcf.zip
Add IR_KINT64.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index d309f828..c5902a61 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -271,7 +271,7 @@ typedef struct jit_State {
271 int32_t framedepth; /* Current frame depth. */ 271 int32_t framedepth; /* Current frame depth. */
272 int32_t retdepth; /* Return frame depth (count of RETF). */ 272 int32_t retdepth; /* Return frame depth (count of RETF). */
273 273
274 MRef knum; /* Pointer to chained array of KNUM constants. */ 274 MRef k64; /* Pointer to chained array of 64 bit constants. */
275 TValue ksimd[LJ_KSIMD__MAX*2+1]; /* 16 byte aligned SIMD constants. */ 275 TValue ksimd[LJ_KSIMD__MAX*2+1]; /* 16 byte aligned SIMD constants. */
276 276
277 IRIns *irbuf; /* Temp. IR instruction buffer. Biased with REF_BIAS. */ 277 IRIns *irbuf; /* Temp. IR instruction buffer. Biased with REF_BIAS. */