summaryrefslogtreecommitdiff
path: root/yjit_asm.c
diff options
context:
space:
mode:
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);