aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:49:30 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:49:30 +0300
commitd4c1d32e0aa21677e72c54ed220fdc70cea732c8 (patch)
tree651a3c29e3e56387e8a5d87c4d0e03251e649e89 /src/common.h
parenteb09800cff9eec8ecbe756b193cab738d43897d2 (diff)
downloadejit-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/common.h')
-rw-r--r--src/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h
index c3442c6..1e21e89 100644
--- a/src/common.h
+++ b/src/common.h
@@ -152,6 +152,6 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc,
int64_t ejit_run_interp(struct ejit_func *f, size_t argc,
struct ejit_arg args[argc], struct interp_state *state);
-bool ejit_compile(struct ejit_func *f);
+bool ejit_compile(struct ejit_func *f, bool use_64);
#endif /* EJIT_COMMON_H */