aboutsummaryrefslogtreecommitdiff
path: root/tests/movi_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/movi_f.c')
-rw-r--r--tests/movi_f.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/movi_f.c b/tests/movi_f.c
new file mode 100644
index 0000000..82e2d0a
--- /dev/null
+++ b/tests/movi_f.c
@@ -0,0 +1,22 @@
+#include "test.h"
+
+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_movi_f(j, JIT_F0, 3.14159f);
+ jit_leave_jit_abi(j, 0, 0, align);
+ jit_retr_f(j, JIT_F0);
+
+ float (*f)(void) = jit_end(j, NULL);
+
+ ASSERT(f() == 3.14159f);
+}
+
+int
+main (int argc, char *argv[])
+{
+ return main_helper(argc, argv, run_test);
+}