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

ruby-changes:68774

From: Alan <ko1@a...>
Date: Thu, 21 Oct 2021 08:13:31 +0900 (JST)
Subject: [ruby-changes:68774] 148ab79cd7 (master): oops

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

From 148ab79cd7a3d17f310c444041e93f30c1f1acac Mon Sep 17 00:00:00 2001
From: Alan Wu <XrXr@u...>
Date: Fri, 12 Feb 2021 14:52:08 -0500
Subject: oops

---
 ujit_asm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ujit_asm.c b/ujit_asm.c
index a67eb7f7d6..5f53ca35c0 100644
--- a/ujit_asm.c
+++ b/ujit_asm.c
@@ -897,7 +897,7 @@ void call_ptr(codeblock_t* cb, x86opnd_t scratch_reg, uint8_t* dst_ptr) https://github.com/ruby/ruby/blob/trunk/ujit_asm.c#L897
     // If the offset fits in 32-bit
     if (rel64 >= -2147483648 && rel64 <= 2147483647)
     {
-        call_rel32(cb, (int32_t)rel64)
+        call_rel32(cb, (int32_t)rel64);
         return;
     }
 
-- 
cgit v1.2.1


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

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