diff options
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index 1f7ddc21..8f87899c 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -368,7 +368,11 @@ typedef struct jit_State { | |||
368 | size_t szallmcarea; /* Total size of all allocated mcode areas. */ | 368 | size_t szallmcarea; /* Total size of all allocated mcode areas. */ |
369 | 369 | ||
370 | TValue errinfo; /* Additional info element for trace errors. */ | 370 | TValue errinfo; /* Additional info element for trace errors. */ |
371 | } LJ_ALIGN(16) jit_State; | 371 | } |
372 | #if LJ_TARGET_ARM | ||
373 | LJ_ALIGN(16) /* For DISPATCH-relative addresses in assembler part. */ | ||
374 | #endif | ||
375 | jit_State; | ||
372 | 376 | ||
373 | /* Trivial PRNG e.g. used for penalty randomization. */ | 377 | /* Trivial PRNG e.g. used for penalty randomization. */ |
374 | static LJ_AINLINE uint32_t LJ_PRNG_BITS(jit_State *J, int bits) | 378 | static LJ_AINLINE uint32_t LJ_PRNG_BITS(jit_State *J, int bits) |