aboutsummaryrefslogtreecommitdiff
path: root/tests/divr_d.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
commitf5c729ea59d227a507f83bd94d07f4366b46d72b (patch)
tree70d1f242100cea09acd38a71ff8c821836117cfd /tests/divr_d.c
parent57f6b41047e95374701ee276248f0f8615168450 (diff)
downloadejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz
ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip
start supporting 32bit arches
Diffstat (limited to 'tests/divr_d.c')
-rw-r--r--tests/divr_d.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/divr_d.c b/tests/divr_d.c
index c6c2998..f6c4bc1 100644
--- a/tests/divr_d.c
+++ b/tests/divr_d.c
@@ -17,9 +17,12 @@ int main(int argc, char *argv[])
ejit_select_compile_func(f, 0, 2, EJIT_USE64(double), do_jit);
- assert(erff2(f, EJIT_ARG(-0.5f, double),
+ assert(erfd2(f,
+ EJIT_ARG(-0.5f, double),
EJIT_ARG(0.5f, double)) == -1.0f);
- assert(erff2(f, EJIT_ARG(1.25f, double),
+
+ assert(erfd2(f,
+ EJIT_ARG(1.25f, double),
EJIT_ARG(0.5f, double)) == 2.5f);
ejit_destroy_func(f);