From 01052811be08444458576dda994d15f8823560ea Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 25 Jun 2024 23:25:29 +0300 Subject: initial rewrite to use ejit + Doesn't actually link yet due to missing stuff from ejit, will have to add them (tomorrow?) --- deps/lightening/tests/jmpi_local.c | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 deps/lightening/tests/jmpi_local.c (limited to 'deps/lightening/tests/jmpi_local.c') diff --git a/deps/lightening/tests/jmpi_local.c b/deps/lightening/tests/jmpi_local.c deleted file mode 100644 index 49e4507..0000000 --- a/deps/lightening/tests/jmpi_local.c +++ /dev/null @@ -1,25 +0,0 @@ -#include "test.h" - -static void -run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size) -{ - jit_begin(j, arena_base, arena_size); - - jit_reloc_t r = jit_jmp (j); - jit_reti (j, 0); - jit_pointer_t addr = jit_address (j); - jit_reti (j, 1); - jit_patch_here (j, r); - jit_jmpi (j, addr); - jit_reti (j, 2); - - int (*f)(void) = jit_end(j, NULL); - - ASSERT(f() == 1); -} - -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); -} -- cgit v1.2.3