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 /tests/stxi_f.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 'tests/stxi_f.c')
-rw-r--r-- | tests/stxi_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stxi_f.c b/tests/stxi_f.c index baac4b4..4c218ed 100644 --- a/tests/stxi_f.c +++ b/tests/stxi_f.c @@ -17,7 +17,7 @@ int main(int argc, char *argv[]) ejit_stxi_f(f, EJIT_FPR(0), EJIT_GPR(0), (uintptr_t)data); ejit_ret(f); - ejit_select_compile_func(f, 1, 1, EJIT_USE64(float), do_jit); + ejit_select_compile_func(f, 1, 1, EJIT_USE64(float) | EJIT_USE64(uintptr_t), do_jit); assert(data[0] == -1.0); assert(data[1] == 0.0); |