diff options
Diffstat (limited to 'tests/eqr_f.c')
-rw-r--r-- | tests/eqr_f.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/eqr_f.c b/tests/eqr_f.c index 0faa2a7..95c9b0e 100644 --- a/tests/eqr_f.c +++ b/tests/eqr_f.c @@ -18,9 +18,9 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 1, 2, EJIT_USE64(long), do_jit); - assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(1, float)) == 1); - assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)) == 0); - assert(erf2(f, EJIT_ARG(0.0/0.0, float), + assert(erfi2(f, EJIT_ARG(1, float), EJIT_ARG(1, float)) == 1); + assert(erfi2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)) == 0); + assert(erfi2(f, EJIT_ARG(0.0/0.0, float), EJIT_ARG(0.0/0.0, float)) == 0); ejit_destroy_func(f); |