diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
commit | f5c729ea59d227a507f83bd94d07f4366b46d72b (patch) | |
tree | 70d1f242100cea09acd38a71ff8c821836117cfd /tests/jmp_table.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/jmp_table.c')
-rw-r--r-- | tests/jmp_table.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/jmp_table.c b/tests/jmp_table.c index 2c4ac84..948bb74 100644 --- a/tests/jmp_table.c +++ b/tests/jmp_table.c @@ -16,7 +16,7 @@ int main(int argc, char *argv[]) } struct ejit_operand operands[1] = { - EJIT_OPERAND_GPR(0, EJIT_POINTER) + EJIT_OPERAND_GPR(0, EJIT_TYPE(long)) }; struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 1, operands); @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) #warning \ "Label rewriting is not currently working so this will fail the jit test" - ejit_ldxi_label(f, EJIT_GPR(1), EJIT_GPR(0), (int64_t)targets); + ejit_ldxi_label(f, EJIT_GPR(1), EJIT_GPR(0), (uintptr_t)targets); ejit_jmpr(f, EJIT_GPR(1)); struct ejit_reloc tails[NTARGETS]; @@ -53,11 +53,11 @@ int main(int argc, char *argv[]) for (int i = -2; i < ((int) NTARGETS) + 2; i++) { if (i < 0) { - assert(erf1(f, EJIT_ARG(i, long)) == 42); + assert(erfi1(f, EJIT_ARG(i, long)) == 42); } else if (i < NTARGETS) { - assert(erf1(f, EJIT_ARG(i, long)) == i * i); + assert(erfi1(f, EJIT_ARG(i, long)) == i * i); } else { - assert(erf1(f, EJIT_ARG(i, long)) == 42); + assert(erfi1(f, EJIT_ARG(i, long)) == 42); } } |