From e618924df98d4ee5037db86c768a8c8014e49c4c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Jun 2024 16:39:24 +0300 Subject: work through loads and stores --- tests/ldi_uc.c | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 tests/ldi_uc.c (limited to 'tests/ldi_uc.c') diff --git a/tests/ldi_uc.c b/tests/ldi_uc.c deleted file mode 100644 index d5c80ac..0000000 --- a/tests/ldi_uc.c +++ /dev/null @@ -1,24 +0,0 @@ -#include "test.h" - -static uint8_t data[] = { 0xff, 0x00, 0x42 }; - -static void -run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size) -{ - jit_begin(j, arena_base, arena_size); - size_t align = jit_enter_jit_abi(j, 0, 0, 0); - - jit_ldi_uc(j, JIT_R0, data); - jit_leave_jit_abi(j, 0, 0, align); - jit_retr(j, JIT_R0); - - jit_uword_t (*f)(void) = jit_end(j, NULL); - - ASSERT(f() == 0xff); -} - -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); -} -- cgit v1.2.3