aboutsummaryrefslogtreecommitdiff
path: root/tests/beqi.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 20:11:34 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 20:11:34 +0300
commit9fe8ccf4ae09018fdde01a9d83f9db10ad354221 (patch)
tree664f802240a2810b5db3e783400351f1eb51c1a0 /tests/beqi.c
parent322c7fba3d2f4c9b5b0d78b44feefd38ae44d017 (diff)
downloadejit-9fe8ccf4ae09018fdde01a9d83f9db10ad354221.tar.gz
ejit-9fe8ccf4ae09018fdde01a9d83f9db10ad354221.zip
work through branching instructions
Diffstat (limited to 'tests/beqi.c')
-rw-r--r--tests/beqi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/beqi.c b/tests/beqi.c
index 147cd50..ebf149f 100644
--- a/tests/beqi.c
+++ b/tests/beqi.c
@@ -19,8 +19,8 @@ int main()
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)) == 0);
+ assert(ejit_run_func_1(f, EJIT_ARG( 0, long)) == 1);
+ assert(ejit_run_func_1(f, EJIT_ARG( 1, long)) == 0);
assert(ejit_run_func_1(f, EJIT_ARG(-1, long)) == 0);
ejit_destroy_func(f);