From d4c1d32e0aa21677e72c54ed220fdc70cea732c8 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 14:49:30 +0300 Subject: 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 --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.h') 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 */ -- cgit v1.2.3