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