diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-07 18:50:34 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-07 18:52:54 +0200 |
commit | ba9145b0b7af2a82c62f8dfa28807958af5d0c8d (patch) | |
tree | 52e14e07d82d57a305334f1300293d6b0af75aca /examples/loop.c | |
parent | 6d00dddef440590eaba9acdc9bbd093653d46519 (diff) | |
download | ejit-ba9145b0b7af2a82c62f8dfa28807958af5d0c8d.tar.gz ejit-ba9145b0b7af2a82c62f8dfa28807958af5d0c8d.zip |
make code a bit more robust
+ Should be more difficult to make mistakes in the future, ejit can now
automatically keep track of how many register slots are used and if 64
bit mode is required. Slight runtime overhead, but not too bad.
Diffstat (limited to 'examples/loop.c')
-rw-r--r-- | examples/loop.c | 5 |
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); |