From ae9e103995c1d809be7b8717905593e7dbbf9d17 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 13 Jul 2024 20:56:26 +0300 Subject: bytecode tests pass --- tests/ldxi_i16.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/ldxi_i16.c') diff --git a/tests/ldxi_i16.c b/tests/ldxi_i16.c index e2af936..8fd1d0a 100644 --- a/tests/ldxi_i16.c +++ b/tests/ldxi_i16.c @@ -16,9 +16,9 @@ int main() ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit); - assert(erf1(f, EJIT_ARG(0, long)) == -1); - assert(erf1(f, EJIT_ARG(1, long)) == 0); - assert(erf1(f, EJIT_ARG(2, long)) == 0x4242); + assert(erf1(f, EJIT_ARG(sizeof(int16_t) * 0, long)) == -1); + assert(erf1(f, EJIT_ARG(sizeof(int16_t) * 1, long)) == 0); + assert(erf1(f, EJIT_ARG(sizeof(int16_t) * 2, long)) == 0x4242); ejit_destroy_func(f); } -- cgit v1.2.3