mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Use different workaround for alignment of jit_State.
This commit is contained in:
parent
d001d7b7ce
commit
ee2bb5efed
@ -368,7 +368,11 @@ typedef struct jit_State {
|
|||||||
size_t szallmcarea; /* Total size of all allocated mcode areas. */
|
size_t szallmcarea; /* Total size of all allocated mcode areas. */
|
||||||
|
|
||||||
TValue errinfo; /* Additional info element for trace errors. */
|
TValue errinfo; /* Additional info element for trace errors. */
|
||||||
} LJ_ALIGN(16) jit_State;
|
}
|
||||||
|
#if LJ_TARGET_ARM
|
||||||
|
LJ_ALIGN(16) /* For DISPATCH-relative addresses in assembler part. */
|
||||||
|
#endif
|
||||||
|
jit_State;
|
||||||
|
|
||||||
/* Trivial PRNG e.g. used for penalty randomization. */
|
/* Trivial PRNG e.g. used for penalty randomization. */
|
||||||
static LJ_AINLINE uint32_t LJ_PRNG_BITS(jit_State *J, int bits)
|
static LJ_AINLINE uint32_t LJ_PRNG_BITS(jit_State *J, int bits)
|
||||||
|
Loading…
Reference in New Issue
Block a user