From 322c7fba3d2f4c9b5b0d78b44feefd38ae44d017 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 18:00:51 +0300 Subject: continue working through bytecode ops --- tests/addr.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests/addr.c') diff --git a/tests/addr.c b/tests/addr.c index 472030f..b67eb29 100644 --- a/tests/addr.c +++ b/tests/addr.c @@ -2,8 +2,7 @@ #include #include "do_jit.h" -int -main (int argc, char *argv[]) +int main() { struct ejit_operand operands[2] = { EJIT_OPERAND_GPR(0, EJIT_TYPE(long)), @@ -17,6 +16,8 @@ main (int argc, char *argv[]) ejit_select_compile_func(f, 2, 0, EJIT_USE64(long), do_jit); - assert(ejit_run_func_2(f, EJIT_ARG(42, long), EJIT_ARG(69, long)) == 111); + assert(ejit_run_func_2(f, + EJIT_ARG(42, long), + EJIT_ARG(69, long)) == 111); ejit_destroy_func(f); } -- cgit v1.2.3