diff options
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); |