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 /tests/movr.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/movr.c')
-rw-r--r-- | tests/movr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/movr.c b/tests/movr.c index 3672f25..cfaaa65 100644 --- a/tests/movr.c +++ b/tests/movr.c @@ -14,6 +14,6 @@ int main(int argc, char *argv[]) ejit_retr(f, EJIT_GPR(1)); ejit_select_compile_func(f, 2, 0, EJIT_USE64(int), do_jit); - assert(ejit_run_func_1(f, EJIT_ARG(42, int)) == 42); + assert(erfi1(f, EJIT_ARG(42, int)) == 42); ejit_destroy_func(f); } |