aboutsummaryrefslogtreecommitdiff
path: root/tests/ldr_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ldr_f.c')
-rw-r--r--tests/ldr_f.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/ldr_f.c b/tests/ldr_f.c
deleted file mode 100644
index 4ea978d..0000000
--- a/tests/ldr_f.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "test.h"
-
-static float data[] = { -1.0, 0.0, 0.5 };
-
-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_load_args_1(j, jit_operand_gpr (JIT_OPERAND_ABI_POINTER, JIT_R1));
-
- jit_ldr_f(j, JIT_F0, JIT_R1);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr_f(j, JIT_F0);
-
- float (*f)(void*) = jit_end(j, NULL);
-
- ASSERT(f(&data[0]) == data[0]);
- ASSERT(f(&data[1]) == data[1]);
- ASSERT(f(&data[2]) == data[2]);
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
-}