From 49aa680ccdac46d1d2a7f9f250999b7ff7099548 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 14:20:07 +0300 Subject: start adding tests --- tests/ldi_f.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/ldi_f.c (limited to 'tests/ldi_f.c') diff --git a/tests/ldi_f.c b/tests/ldi_f.c new file mode 100644 index 0000000..d5cd095 --- /dev/null +++ b/tests/ldi_f.c @@ -0,0 +1,24 @@ +#include "test.h" + +static float data = -1.5f; + +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_f(j, JIT_F0, &data); + jit_leave_jit_abi(j, 0, 0, align); + jit_retr_f(j, JIT_F0); + + float (*f)(void) = jit_end(j, NULL); + + ASSERT(f() == data); +} + +int +main (int argc, char *argv[]) +{ + return main_helper(argc, argv, run_test); +} -- cgit v1.2.3