[前][次][番号順一覧][スレッド一覧]

ruby-changes:68865

From: Maxime <ko1@a...>
Date: Thu, 21 Oct 2021 08:14:59 +0900 (JST)
Subject: [ruby-changes:68865] d1e9e4566f (master): Update yjit_asm.c

https://git.ruby-lang.org/ruby.git/commit/?id=d1e9e4566f

From d1e9e4566f93e219314f361b88b4a0e003a25241 Mon Sep 17 00:00:00 2001
From: Maxime Chevalier-Boisvert <maximechevalierb@g...>
Date: Tue, 6 Apr 2021 11:26:20 -0400
Subject: 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) https://github.com/ruby/ruby/blob/trunk/yjit_asm.c#L155
         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);
 
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]