1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Update yjit_asm.c

This commit is contained in:
Maxime Chevalier-Boisvert 2021-04-06 11:26:20 -04:00 committed by Alan Wu
parent 3d53ee1761
commit d1e9e4566f

View file

@ -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);