aboutsummaryrefslogtreecommitdiff
path: root/tests/ldi_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ldi_f.c')
-rw-r--r--tests/ldi_f.c28
1 files changed, 11 insertions, 17 deletions
diff --git a/tests/ldi_f.c b/tests/ldi_f.c
index d5cd095..48974d2 100644
--- a/tests/ldi_f.c
+++ b/tests/ldi_f.c
@@ -1,24 +1,18 @@
-#include "test.h"
+#include <ejit/ejit.h>
+#include <assert.h>
+#include "do_jit.h"
-static float data = -1.5f;
+static float data = -1.5;
-static void
-run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
+int main()
{
- jit_begin(j, arena_base, arena_size);
- size_t align = jit_enter_jit_abi(j, 0, 0, 0);
+ struct ejit_func *f = ejit_create_func(EJIT_TYPE(float), 0, NULL);
+ ejit_ldi_f(f, EJIT_FPR(0), &data);
+ ejit_retr_f(f, EJIT_FPR(0));
- jit_ldi_f(j, JIT_F0, &data);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr_f(j, JIT_F0);
+ ejit_select_compile_func(f, 1, 0, EJIT_USE64(float), do_jit);
- float (*f)(void) = jit_end(j, NULL);
+ assert(ejit_run_func_f(f, 0, NULL) == data);
- ASSERT(f() == data);
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
+ ejit_destroy_func(f);
}