From f5c729ea59d227a507f83bd94d07f4366b46d72b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 14 Mar 2025 21:08:01 +0200 Subject: start supporting 32bit arches --- examples/loop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/loop.c') diff --git a/examples/loop.c b/examples/loop.c index 51ba2e9..537a931 100644 --- a/examples/loop.c +++ b/examples/loop.c @@ -3,7 +3,7 @@ int main() { - struct ejit_func *f = ejit_create_func(EJIT_INT64, 0, NULL); + struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 0, NULL); ejit_movi(f, EJIT_GPR(3), 1); // location 3 just has a constant 1 for // increment @@ -21,7 +21,7 @@ int main() ejit_patch(f, r, l); ejit_compile_func(f); - long result = ejit_run_func(f, 0, NULL); // no args so this is fine + long result = ejit_run_func_i(f, 0, NULL); // no args so this is fine printf("%ld\n", result); ejit_destroy_func(f); -- cgit v1.2.3