diff options
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); } } |