diff options
author | Mike Pall <mike> | 2016-05-23 00:27:51 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2016-05-23 00:27:51 +0200 |
commit | 9e99ccc360bc9784ebe5ce29d5fa2c72acfc5777 (patch) | |
tree | d61e424f74482c8079cd479393c36006da52f6e8 /src/lj_jit.h | |
parent | 7fb75ccc4cf17825c1c8fe9f44ebfb0668a1b033 (diff) | |
download | luajit-9e99ccc360bc9784ebe5ce29d5fa2c72acfc5777.tar.gz luajit-9e99ccc360bc9784ebe5ce29d5fa2c72acfc5777.tar.bz2 luajit-9e99ccc360bc9784ebe5ce29d5fa2c72acfc5777.zip |
Strip out old infrastructure for 64 bit constants.
Contributed by Peter Cawley.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index e9ab319e..55fbea8b 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -392,7 +392,6 @@ typedef struct jit_State { | |||
392 | int32_t framedepth; /* Current frame depth. */ | 392 | int32_t framedepth; /* Current frame depth. */ |
393 | int32_t retdepth; /* Return frame depth (count of RETF). */ | 393 | int32_t retdepth; /* Return frame depth (count of RETF). */ |
394 | 394 | ||
395 | MRef k64p; /* Pointer to chained array of 64 bit constants. */ | ||
396 | TValue ksimd[LJ_KSIMD__MAX*2+1]; /* 16 byte aligned SIMD constants. */ | 395 | TValue ksimd[LJ_KSIMD__MAX*2+1]; /* 16 byte aligned SIMD constants. */ |
397 | TValue k64[LJ_K64__MAX]; /* Common 8 byte constants used by backends. */ | 396 | TValue k64[LJ_K64__MAX]; /* Common 8 byte constants used by backends. */ |
398 | uint32_t k32[LJ_K32__MAX]; /* Ditto for 4 byte constants. */ | 397 | uint32_t k32[LJ_K32__MAX]; /* Ditto for 4 byte constants. */ |