aboutsummaryrefslogtreecommitdiff
path: root/examples/loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/loop.c')
-rw-r--r--examples/loop.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/loop.c b/examples/loop.c
index f4f66ae..51ba2e9 100644
--- a/examples/loop.c
+++ b/examples/loop.c
@@ -20,10 +20,7 @@ int main()
ejit_patch(f, r, l);
- /* the highest location we used was 3, so we need to request 4 locations
- * for general purpose registers in total. No floating point registers,
- * so 0. */
- ejit_compile_func(f, 4, 0, true);
+ ejit_compile_func(f);
long result = ejit_run_func(f, 0, NULL); // no args so this is fine
printf("%ld\n", result);