diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
commit | f5c729ea59d227a507f83bd94d07f4366b46d72b (patch) | |
tree | 70d1f242100cea09acd38a71ff8c821836117cfd /examples/loop.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'examples/loop.c')
-rw-r--r-- | examples/loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |