aboutsummaryrefslogtreecommitdiff
path: root/tests/bgti_u.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bgti_u.c')
-rw-r--r--tests/bgti_u.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/bgti_u.c b/tests/bgti_u.c
index c0055d4..1112fec 100644
--- a/tests/bgti_u.c
+++ b/tests/bgti_u.c
@@ -21,9 +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)) == 0);
- assert(ejit_run_func_1(f, EJIT_ARG(1, long)) == 1);
- assert(ejit_run_func_1(f, EJIT_ARG(-1, long)) == 1);
+ assert(erfi1(f, EJIT_ARG( 0, long)) == 0);
+ assert(erfi1(f, EJIT_ARG( 1, long)) == 1);
+ assert(erfi1(f, EJIT_ARG(-1, long)) == 1);
ejit_destroy_func(f);
}