aboutsummaryrefslogtreecommitdiff
path: root/tests/str_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/str_f.c')
-rw-r--r--tests/str_f.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/str_f.c b/tests/str_f.c
deleted file mode 100644
index 7b394ae..0000000
--- a/tests/str_f.c
+++ /dev/null
@@ -1,32 +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_2(j, jit_operand_gpr (JIT_OPERAND_ABI_POINTER, JIT_R0),
- jit_operand_fpr (JIT_OPERAND_ABI_FLOAT, JIT_F0));
-
- jit_str_f(j, JIT_R0, JIT_F0);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_ret(j);
-
- void (*f)(void*, float) = jit_end(j, NULL);
-
- ASSERT(data[0] == -1.0f);
- ASSERT(data[1] == 0.0f);
- ASSERT(data[2] == 0.5f);
- f(&data[1], 42.5f);
- ASSERT(data[0] == -1.0f);
- ASSERT(data[1] == 42.5f);
- ASSERT(data[2] == 0.5f);
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
-}