From d1e9e4566f93e219314f361b88b4a0e003a25241 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Tue, 6 Apr 2021 11:26:20 -0400 Subject: [PATCH] Update yjit_asm.c --- yjit_asm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);