aboutsummaryrefslogtreecommitdiff
path: root/tests/andi.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 22:33:57 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 23:17:04 +0200
commit2a2d096b61262c2059ea022379869b9c4a70eafa (patch)
tree42f0c6a53506f613f1441a9f206e756dbae3afa7 /tests/andi.c
parentf5c729ea59d227a507f83bd94d07f4366b46d72b (diff)
downloadejit-2a2d096b61262c2059ea022379869b9c4a70eafa.tar.gz
ejit-2a2d096b61262c2059ea022379869b9c4a70eafa.zip
protect jit pages
Diffstat (limited to 'tests/andi.c')
-rw-r--r--tests/andi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/andi.c b/tests/andi.c
index c8fa277..c7dc71d 100644
--- a/tests/andi.c
+++ b/tests/andi.c
@@ -15,7 +15,7 @@ int main(int argc, char *argv[])
ejit_andi(f, EJIT_GPR(0), EJIT_GPR(0), 1);
ejit_retr(f, EJIT_GPR(0));
- ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit);
+ ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit, true);
assert(erfi1(f, EJIT_ARG(0x7fffffff, long)) == 1);
assert(erfi1(f, EJIT_ARG(0x80000000, long)) == 0);