From dcca95ebeef7ad047b437c7e65bcd2d33784cae4 Mon Sep 17 00:00:00 2001
From: Kimplul <kimi.h.kuparinen@gmail.com>
Date: Sun, 14 Jul 2024 14:46:40 +0300
Subject: add float + double instead of just double

---
 tests/ner_f.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

(limited to 'tests/ner_f.c')

diff --git a/tests/ner_f.c b/tests/ner_f.c
index 687e9ed..fb60120 100644
--- a/tests/ner_f.c
+++ b/tests/ner_f.c
@@ -7,8 +7,8 @@ int main(int argc, char *argv[])
 	(void)argv;
 	bool do_jit = argc > 1;
 	struct ejit_operand operands[2] = {
-		EJIT_OPERAND_FPR(0, EJIT_TYPE(double)),
-		EJIT_OPERAND_FPR(1, EJIT_TYPE(double))
+		EJIT_OPERAND_FPR(0, EJIT_TYPE(float)),
+		EJIT_OPERAND_FPR(1, EJIT_TYPE(float))
 	};
 
 	struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 2, operands);
@@ -18,10 +18,8 @@ int main(int argc, char *argv[])
 
 	ejit_select_compile_func(f, 1, 2, EJIT_USE64(long), do_jit);
 
-	assert(ejit_run_func_2(f, EJIT_ARG(1, double),
-	                       EJIT_ARG(1, double)) == 0);
-	assert(ejit_run_func_2(f, EJIT_ARG(1, double),
-	                       EJIT_ARG(0, double)) == 1);
+	assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(1, float)) == 0);
+	assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)) == 1);
 
 	ejit_destroy_func(f);
 }
-- 
cgit v1.2.3