aboutsummaryrefslogtreecommitdiff
path: root/tests/bgtr_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bgtr_f.c')
-rw-r--r--tests/bgtr_f.c39
1 files changed, 22 insertions, 17 deletions
diff --git a/tests/bgtr_f.c b/tests/bgtr_f.c
index 2942cff..6fa9b45 100644
--- a/tests/bgtr_f.c
+++ b/tests/bgtr_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);
@@ -21,21 +21,26 @@ int main(int argc, char *argv[])
ejit_select_compile_func(f, 0, 2, EJIT_USE64(long), do_jit);
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(1, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(1, double),
- EJIT_ARG(0, double)) == 1);
- assert(ejit_run_func_2(f, EJIT_ARG(-1, double),
- EJIT_ARG(0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(-1, double)) == 1);
-
- assert(ejit_run_func_2(f, EJIT_ARG(0, double),
- EJIT_ARG(0.0/0.0, double)) == 0);
- assert(ejit_run_func_2(f, EJIT_ARG(0.0/0.0, double),
- EJIT_ARG(0, double)) == 0);
+ assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(0, float)
+ ) == 0);
+
+ assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(1, float)
+ ) == 0);
+
+ assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)
+ ) == 1);
+
+ assert(erf2(f, EJIT_ARG(-1, float), EJIT_ARG(0, float)
+ ) == 0);
+
+ assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(-1, float)
+ ) == 1);
+
+ assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(0.0/0.0, float)
+ ) == 0);
+
+ assert(erf2(f, EJIT_ARG(0.0/0.0, float), EJIT_ARG(0, float)
+ ) == 0);
ejit_destroy_func(f);
}