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/jmp0.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/jmp0.c')
-rw-r--r-- | tests/jmp0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/jmp0.c b/tests/jmp0.c index cdba901..4157c9f 100644 --- a/tests/jmp0.c +++ b/tests/jmp0.c @@ -18,8 +18,8 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit); - assert(erf1(f, EJIT_ARG(42, long)) == 42); - assert(erf1(f, EJIT_ARG(-1, long)) == -1); + assert(erfi1(f, EJIT_ARG(42, long)) == 42); + assert(erfi1(f, EJIT_ARG(-1, long)) == -1); ejit_destroy_func(f); } |