From f5c729ea59d227a507f83bd94d07f4366b46d72b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 14 Mar 2025 21:08:01 +0200 Subject: start supporting 32bit arches --- tests/lshi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/lshi.c') diff --git a/tests/lshi.c b/tests/lshi.c index 9685f46..d9e5192 100644 --- a/tests/lshi.c +++ b/tests/lshi.c @@ -12,12 +12,12 @@ int main(int argc, char *argv[]) struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 1, operands); - ejit_lshi(f, EJIT_GPR(0), EJIT_GPR(0), 31); + ejit_lshi(f, EJIT_GPR(0), EJIT_GPR(0), 4); ejit_retr(f, EJIT_GPR(0)); ejit_select_compile_func(f, 1, 0, false, do_jit); - assert(erf1(f, EJIT_ARG(-0x7f, long)) == (int64_t)0xffffffc080000000); + assert(erfi1(f, EJIT_ARG(-0x7f, long)) == (-0x7f) * (1 << 4)); ejit_destroy_func(f); } -- cgit v1.2.3