aboutsummaryrefslogtreecommitdiff
path: root/tests/ldi_c.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ldi_c.c')
-rw-r--r--tests/ldi_c.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/ldi_c.c b/tests/ldi_c.c
new file mode 100644
index 0000000..c6539c0
--- /dev/null
+++ b/tests/ldi_c.c
@@ -0,0 +1,24 @@
+#include "test.h"
+
+static uint8_t data[] = { 0xff, 0x00, 0x42 };
+
+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_c(j, JIT_R0, &data[0]);
+ jit_leave_jit_abi(j, 0, 0, align);
+ jit_retr(j, JIT_R0);
+
+ jit_uword_t (*f)(void) = jit_end(j, NULL);
+
+ ASSERT(f() == -1);
+}
+
+int
+main (int argc, char *argv[])
+{
+ return main_helper(argc, argv, run_test);
+}