diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:49:30 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:49:30 +0300 |
commit | d4c1d32e0aa21677e72c54ed220fdc70cea732c8 (patch) | |
tree | 651a3c29e3e56387e8a5d87c4d0e03251e649e89 /src/compile/compile.c | |
parent | eb09800cff9eec8ecbe756b193cab738d43897d2 (diff) | |
download | ejit-d4c1d32e0aa21677e72c54ed220fdc70cea732c8.tar.gz ejit-d4c1d32e0aa21677e72c54ed220fdc70cea732c8.zip |
add flag for using 64 bit values on 32 machines
+ JIT backends needs to still trigger an assertion if we detect that the
user lied
Diffstat (limited to 'src/compile/compile.c')
-rw-r--r-- | src/compile/compile.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/compile/compile.c b/src/compile/compile.c index c9a92a2..4ac68d3 100644 --- a/src/compile/compile.c +++ b/src/compile/compile.c @@ -522,8 +522,14 @@ static size_t compile_fn_body(struct ejit_func *f, jit_state_t *j, void *arena, return size; } -bool ejit_compile(struct ejit_func *f) +bool ejit_compile(struct ejit_func *f, bool use_64) { + (void)use_64; +#if __WORDSIZE == 32 + /* can't compile 64bit code on 32bit systems, give up early */ + if (use_64) + return false; +#endif if (!init_jit()) return false; |