From dcca95ebeef7ad047b437c7e65bcd2d33784cae4 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 14 Jul 2024 14:46:40 +0300 Subject: add float + double instead of just double --- tests/subr_f.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/subr_f.c') diff --git a/tests/subr_f.c b/tests/subr_f.c index 61c3916..a0f3059 100644 --- a/tests/subr_f.c +++ b/tests/subr_f.c @@ -7,20 +7,20 @@ 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(double), 2, operands); + struct ejit_func *f = ejit_create_func(EJIT_TYPE(float), 2, operands); ejit_subr_f(f, EJIT_FPR(0), EJIT_FPR(0), EJIT_FPR(1)); ejit_retr_f(f, EJIT_FPR(0)); - ejit_select_compile_func(f, 0, 2, EJIT_USE64(double), do_jit); + ejit_select_compile_func(f, 0, 2, EJIT_USE64(float), do_jit); - assert(erff2(f, EJIT_ARG(42., double), EJIT_ARG(69., double) + assert(erff2(f, EJIT_ARG(42., float), EJIT_ARG(69., float) ) == -27.); - assert(erff2(f, EJIT_ARG(42.5, double), EJIT_ARG(69., double) + assert(erff2(f, EJIT_ARG(42.5, float), EJIT_ARG(69., float) ) == -26.5); ejit_destroy_func(f); -- cgit v1.2.3