From 2a2d096b61262c2059ea022379869b9c4a70eafa Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 14 Mar 2025 22:33:57 +0200 Subject: protect jit pages --- tests/movr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/movr.c') diff --git a/tests/movr.c b/tests/movr.c index cfaaa65..5a7404a 100644 --- a/tests/movr.c +++ b/tests/movr.c @@ -12,7 +12,7 @@ int main(int argc, char *argv[]) struct ejit_func *f = ejit_create_func(EJIT_TYPE(int), 1, operands); ejit_movr(f, EJIT_GPR(1), EJIT_GPR(0)); ejit_retr(f, EJIT_GPR(1)); - ejit_select_compile_func(f, 2, 0, EJIT_USE64(int), do_jit); + ejit_select_compile_func(f, 2, 0, EJIT_USE64(int), do_jit, true); assert(erfi1(f, EJIT_ARG(42, int)) == 42); ejit_destroy_func(f); -- cgit v1.2.3