aboutsummaryrefslogtreecommitdiff
path: root/tests/ldxr_ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ldxr_ui.c')
-rw-r--r--tests/ldxr_ui.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/ldxr_ui.c b/tests/ldxr_ui.c
deleted file mode 100644
index eddb56b..0000000
--- a/tests/ldxr_ui.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "test.h"
-
-static void
-run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
-{
-#if EJIT_WORDSIZE > 32
- static uint32_t data[] = { 0xffffffff, 0x00000000, 0x42424242 };
-
- 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_gpr (JIT_OPERAND_ABI_WORD, JIT_R1));
-
- jit_ldxr_ui(j, JIT_R0, JIT_R0, JIT_R1);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr(j, JIT_R0);
-
- jit_uword_t (*f)(void*, jit_uword_t) = jit_end(j, NULL);
-
- ASSERT(f(data, 0) == data[0]);
- ASSERT(f(data, 4) == data[1]);
- ASSERT(f(data, 8) == data[2]);
-#endif
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
-}