diff options
Diffstat (limited to 'tests/bgei_u.c')
-rw-r--r-- | tests/bgei_u.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/bgei_u.c b/tests/bgei_u.c index 4edb5c7..20ac961 100644 --- a/tests/bgei_u.c +++ b/tests/bgei_u.c @@ -21,7 +21,9 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit); - assert(ejit_run_func_1(f, EJIT_ARG(0, long)) == 1); - assert(ejit_run_func_1(f, EJIT_ARG(1, long)) == 1); - assert(ejit_run_func_1(f, EJIT_ARG(-1, long)) == 1); + assert(erf1(f, EJIT_ARG(0, long)) == 1); + assert(erf1(f, EJIT_ARG(1, long)) == 1); + assert(erf1(f, EJIT_ARG(-1, long)) == 1); + + ejit_destroy_func(f); } |