summaryrefslogtreecommitdiff
path: root/yjit_asm.c
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maximechevalierb@gmail.com>2021-04-06 11:26:20 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:32 -0400
commitd1e9e4566f93e219314f361b88b4a0e003a25241 (patch)
treea0bb6415f005458fa638869da435fac9c28666f7 /yjit_asm.c
parent3d53ee17616d9c028d2b537989c4cd2e1d08261b (diff)
Update yjit_asm.c
Diffstat (limited to 'yjit_asm.c')
-rw-r--r--yjit_asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_asm.c b/yjit_asm.c
index 78c9255d65..658468f02c 100644
--- a/yjit_asm.c
+++ b/yjit_asm.c
@@ -155,7 +155,7 @@ uint8_t* alloc_exec_mem(uint32_t mem_size)
exit(-1);
}
- // Fill the executable memory with 0x13 so that
+ // Fill the executable memory with INT3 (0xCC) so that
// executing uninitialized memory will fault
memset(mem_block, 0xCC, mem_size);